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
2 changed files with 15 additions and 0 deletions
|
@ -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>
|
||||
|
||||
PR fortran/54195
|
||||
|
|
8
gcc/testsuite/g++.dg/asan/pr55617.C
Normal file
8
gcc/testsuite/g++.dg/asan/pr55617.C
Normal file
|
@ -0,0 +1,8 @@
|
|||
// { dg-do run { target { i?86-*-darwin* x86_64-*-darwin* } } }
|
||||
|
||||
struct c18 {
|
||||
virtual void bar() { }
|
||||
};
|
||||
c18 ret;
|
||||
int main () {
|
||||
}
|
Loading…
Add table
Reference in a new issue