mirror of git://gcc.gnu.org/git/gcc.git
re PR sanitizer/55617 (static constructors are not being instrumented correctly on darwin)
2013-02-04 Alexander Potapenko <glider@google.com>
Jack Howarth <howarth@bromo.med.uc.edu>
Jakub Jelinek <jakub@redhat.com>
PR sanitizer/55617
* g++.dg/asan/pr55617.C: New test.
Co-Authored-By: Jack Howarth <howarth@bromo.med.uc.edu>
Co-Authored-By: Jakub Jelinek <jakub@redhat.com>
From-SVN: r195737
This commit is contained in:
parent
b3dc71024e
commit
f3bd007a3a
|
|
@ -1,3 +1,10 @@
|
||||||
|
2013-02-04 Alexander Potapenko <glider@google.com>
|
||||||
|
Jack Howarth <howarth@bromo.med.uc.edu>
|
||||||
|
Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
PR sanitizer/55617
|
||||||
|
* g++.dg/asan/pr55617.C: New test.
|
||||||
|
|
||||||
2013-02-04 Mikael Morin <mikael@gcc.gnu.org>
|
2013-02-04 Mikael Morin <mikael@gcc.gnu.org>
|
||||||
|
|
||||||
PR fortran/54195
|
PR fortran/54195
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
// { dg-do run { target { i?86-*-darwin* x86_64-*-darwin* } } }
|
||||||
|
|
||||||
|
struct c18 {
|
||||||
|
virtual void bar() { }
|
||||||
|
};
|
||||||
|
c18 ret;
|
||||||
|
int main () {
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue