diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2014-02-01 10:33:36 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-02-01 10:33:36 +0000 |
commit | cf0ac7568481b7c1153db1c7a0620bf9db52f3a6 (patch) | |
tree | a42af08c3629065ef9f89d7a81865bf6a80029c8 /gcc | |
parent | 4244ec23df13380a2e1e5377b9e7dc54b3bf7c8b (diff) | |
download | gcc-cf0ac7568481b7c1153db1c7a0620bf9db52f3a6.zip gcc-cf0ac7568481b7c1153db1c7a0620bf9db52f3a6.tar.gz gcc-cf0ac7568481b7c1153db1c7a0620bf9db52f3a6.tar.bz2 |
vector26.C: Restrict scan-assembler test to ! c++98.
gcc/testsuite/
* g++.dg/ext/vector26.C: Restrict scan-assembler test to ! c++98.
From-SVN: r207384
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/ext/vector26.C | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5cee1fe..9ad788e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2014-02-01 Richard Sandiford <rdsandiford@googlemail.com> + + * g++.dg/ext/vector26.C: Restrict scan-assembler test to ! c++98. + 2014-02-01 Paolo Carlini <paolo.carlini@oracle.com> PR c++/51219 diff --git a/gcc/testsuite/g++.dg/ext/vector26.C b/gcc/testsuite/g++.dg/ext/vector26.C index 6d55158..b6091b6 100644 --- a/gcc/testsuite/g++.dg/ext/vector26.C +++ b/gcc/testsuite/g++.dg/ext/vector26.C @@ -5,4 +5,4 @@ typedef enum { e } T __attribute__((vector_size(8))); static void foo(T t) {} void bar (T t) {} // { dg-error "no linkage" "" { target c++98 } } -// { dg-final { scan-assembler-not "globl\[ \t]*_Z3bar" } } +// { dg-final { scan-assembler-not "globl\[ \t]*_Z3bar" { target { ! c++98 } } } } |