diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2008-01-03 02:33:12 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2008-01-03 02:33:12 +0000 |
commit | 8c7cc333be628a708bac4b59d1745c2c91bdcdc3 (patch) | |
tree | f58cd2e0cf983f6eb9dbc62ac78dd2e7b1acced1 /gcc | |
parent | 06448093c683946c4c71f13283405bf63737b267 (diff) | |
download | gcc-8c7cc333be628a708bac4b59d1745c2c91bdcdc3.zip gcc-8c7cc333be628a708bac4b59d1745c2c91bdcdc3.tar.gz gcc-8c7cc333be628a708bac4b59d1745c2c91bdcdc3.tar.bz2 |
re PR middle-end/34562 (FAIL: g++.dg/other/first-global.C scan-assembler _GLOBAL__I_foobar)
PR middle-end/34562
* g++.dg/other/first-global.C: Also accept _GLOBAL__I_65535_0_foobar in
scan-assembler check.
From-SVN: r131274
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/other/first-global.C | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index c23446b..0c00eb6 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2008-01-02 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + PR middle-end/34562 + * g++.dg/other/first-global.C: Also accept _GLOBAL__I_65535_0_foobar in + scan-assembler check. + 2008-01-03 Jakub Jelinek <jakub@redhat.com> PR middle-end/34608 diff --git a/gcc/testsuite/g++.dg/other/first-global.C b/gcc/testsuite/g++.dg/other/first-global.C index 81e7a96..4093ade 100644 --- a/gcc/testsuite/g++.dg/other/first-global.C +++ b/gcc/testsuite/g++.dg/other/first-global.C @@ -1,6 +1,6 @@ /* { dg-do compile } */ /* { dg-options "-fpie" { target *-*-darwin* } } */ -/* { dg-final { scan-assembler "_GLOBAL__I_foobar" } } */ +/* { dg-final { scan-assembler "_GLOBAL__I(_|_65535_0_)foobar" } } */ struct foo { foo (); }; foo foobar; |