diff options
| author | Mike Stump <mikestump@comcast.net> | 2012-03-27 18:01:06 +0000 |
|---|---|---|
| committer | Mike Stump <mrs@gcc.gnu.org> | 2012-03-27 18:01:06 +0000 |
| commit | ab7ea426a359564da2edf11914782528e381aa9a (patch) | |
| tree | 743e1e59a08e77de46a9055bd01a22e721379a77 | |
| parent | 9a0ee5ed8bcc8052f484a6f8042447bdd8ab61a1 (diff) | |
| download | gcc-ab7ea426a359564da2edf11914782528e381aa9a.tar.gz gcc-ab7ea426a359564da2edf11914782528e381aa9a.tar.bz2 gcc-ab7ea426a359564da2edf11914782528e381aa9a.zip | |
re PR testsuite/52665 (scan-assembler output produces wrong FAIL due to matching .ident)
PR target/52665
* gcc.target/i386/pr28946.c: Use -fno-ident to avoid spurious
failures that match branch names.
From-SVN: r185889
| -rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.target/i386/pr28946.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a9f0bc8c069..9fdb69d7e4d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2012-03-27 Mike Stump <mikestump@comcast.net> + + PR target/52665 + * gcc.target/i386/pr28946.c: Use -fno-ident to avoid spurious + failures that match branch names. + 2012-03-27 Uros Bizjak <ubizjak@gmail.com> H.J. Lu <hongjiu.lu@intel.com> diff --git a/gcc/testsuite/gcc.target/i386/pr28946.c b/gcc/testsuite/gcc.target/i386/pr28946.c index bdc2fd15f7f..3272079772c 100644 --- a/gcc/testsuite/gcc.target/i386/pr28946.c +++ b/gcc/testsuite/gcc.target/i386/pr28946.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-Os" } */ +/* { dg-options "-Os -fno-ident" } */ /* { dg-final { scan-assembler-not "test" } } */ int fct1 (void); |
