diff options
author | H.J. Lu <hjl@gcc.gnu.org> | 2015-01-12 03:51:18 -0800 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2015-01-12 03:51:18 -0800 |
commit | 0e8f3d956510c8cc2484cffd8ab3123bf9d9c759 (patch) | |
tree | fdcbac34540ddf7654ee352ac99ce774b7b643ea /gcc | |
parent | 7b3592ee4674e8a4277191ffc53df073d2e6db4a (diff) | |
download | gcc-0e8f3d956510c8cc2484cffd8ab3123bf9d9c759.zip gcc-0e8f3d956510c8cc2484cffd8ab3123bf9d9c759.tar.gz gcc-0e8f3d956510c8cc2484cffd8ab3123bf9d9c759.tar.bz2 |
Correct target selector in gcc.target/i386/nop-mcount.c
* gcc.target/i386/nop-mcount.c: Properly place {} in target
selector.
From-SVN: r219461
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.target/i386/nop-mcount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/i386/nop-mcount.c b/gcc/testsuite/gcc.target/i386/nop-mcount.c index 561792f..139fbb0 100644 --- a/gcc/testsuite/gcc.target/i386/nop-mcount.c +++ b/gcc/testsuite/gcc.target/i386/nop-mcount.c @@ -1,5 +1,5 @@ /* Test -mnop-mcount */ -/* { dg-do compile { target { *-*-linux* } && { nonpic } } } */ +/* { dg-do compile { target { { *-*-linux* } && nonpic } } } */ /* { dg-options "-pg -mfentry -mrecord-mcount -mnop-mcount" } */ /* { dg-final { scan-assembler-not "__fentry__" } } */ /* Origin: Andi Kleen */ |