diff options
author | Patrick Marlier <patrick.marlier@gmail.com> | 2012-01-04 16:58:22 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2012-01-04 16:58:22 +0000 |
commit | 89b5d3e0d23add808bf24e61247b1257d138fc5f (patch) | |
tree | 23696e23815047e37e9666980dc765267bbcfa68 /gcc | |
parent | a10bf1f989bf224536a92292b55ff915d7dbf272 (diff) | |
download | gcc-89b5d3e0d23add808bf24e61247b1257d138fc5f.zip gcc-89b5d3e0d23add808bf24e61247b1257d138fc5f.tar.gz gcc-89b5d3e0d23add808bf24e61247b1257d138fc5f.tar.bz2 |
+ * gcc.dg/tm/alias-1.c: Adjust regexp.
+ * gcc.dg/tm/alias-1.c: Adjust regexp.
+ * gcc.dg/tm/alias-2.c: Adjust regexp.
From-SVN: r182881
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/tm/alias-1.c | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/tm/alias-2.c | 4 |
3 files changed, 10 insertions, 5 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 373ae01..a09f583 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2012-01-04 Patrick Marlier <patrick.marlier@gmail.com> + + * gcc.dg/tm/alias-1.c: Adjust regexp. + * gcc.dg/tm/alias-2.c: Adjust regexp. + 2012-01-04 Paolo Carlini <paolo.carlini@oracle.com> PR c++/51064 diff --git a/gcc/testsuite/gcc.dg/tm/alias-1.c b/gcc/testsuite/gcc.dg/tm/alias-1.c index 364aa71..596851d 100644 --- a/gcc/testsuite/gcc.dg/tm/alias-1.c +++ b/gcc/testsuite/gcc.dg/tm/alias-1.c @@ -34,7 +34,7 @@ void f(void) } /* { dg-final { scan-tree-dump-times "mystruct = \{ .*ESCAPED" 1 "ealias" } } */ -/* { dg-final { scan-tree-dump-times "someptr = same as mystruct" 1 "ealias" { xfail *-*-* } } } */ -/* { dg-final { scan-tree-dump-times "ui\..* = same as mystruct" 1 "ealias" { xfail *-*-* } } } */ -/* { dg-final { scan-tree-dump-times "pp\..* = same as mystruct" 1 "ealias" { xfail *-*-* } } } */ +/* { dg-final { scan-tree-dump-times "someptr = .*same as mystruct" 1 "ealias" } } */ +/* { dg-final { scan-tree-dump-times "ui\..* = .*same as mystruct" 1 "ealias" } } */ +/* { dg-final { scan-tree-dump-times "pp\..* = .*same as mystruct" 1 "ealias" } } */ /* { dg-final { cleanup-tree-dump "ealias" } } */ diff --git a/gcc/testsuite/gcc.dg/tm/alias-2.c b/gcc/testsuite/gcc.dg/tm/alias-2.c index 761a99c..6306803 100644 --- a/gcc/testsuite/gcc.dg/tm/alias-2.c +++ b/gcc/testsuite/gcc.dg/tm/alias-2.c @@ -36,7 +36,7 @@ void foo() candy(); } -/* { dg-final { scan-tree-dump-times "ui\..* = same as mystruct" 1 "ealias" { xfail *-*-* } } } */ +/* { dg-final { scan-tree-dump-times "ui\..* = .*same as mystruct" 1 "ealias" } } */ /* { dg-final { scan-tree-dump-times "mystruct.*ESCAPED" 1 "ealias" } } */ -/* { dg-final { scan-tree-dump-times "pp = same as mystruct" 1 "ealias" { xfail *-*-* } } } */ +/* { dg-final { scan-tree-dump-times "pp = .*same as mystruct" 1 "ealias" } } */ /* { dg-final { cleanup-tree-dump "ealias" } } */ |