diff options
author | Kai Tietz <ktietz@gcc.gnu.org> | 2011-04-20 19:42:51 +0200 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2011-04-20 19:42:51 +0200 |
commit | c988e08f67c138fda6468825a2390f3a049b6a33 (patch) | |
tree | d1d72b67940e5bca89e4027bdafa5355014a16d6 /gcc | |
parent | 0eda40338e214245b14933f5ef6d73848f52f577 (diff) | |
download | gcc-c988e08f67c138fda6468825a2390f3a049b6a33.zip gcc-c988e08f67c138fda6468825a2390f3a049b6a33.tar.gz gcc-c988e08f67c138fda6468825a2390f3a049b6a33.tar.bz2 |
Fixed recent testcases for backslash hell typo.
From-SVN: r172781
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/binop-xor1.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/binop-xor2.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/binop-xor3.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/binop-xor4.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/binop-xor5.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/gcc/testsuite/gcc.dg/binop-xor1.c b/gcc/testsuite/gcc.dg/binop-xor1.c index 7e46286..53a2ce2 100644 --- a/gcc/testsuite/gcc.dg/binop-xor1.c +++ b/gcc/testsuite/gcc.dg/binop-xor1.c @@ -10,5 +10,5 @@ foo (int a, int b, int c) /* We expect to see "<bb N>"; confirm that, so that we know to count it in the real test. */ /* { dg-final { scan-tree-dump-times "<bb\[^>\]*>" 5 "optimized" } } */ -/* { dg-final { scan-tree-dump-times "\^" 1 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "\\\^" 1 "optimized" } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */ diff --git a/gcc/testsuite/gcc.dg/binop-xor2.c b/gcc/testsuite/gcc.dg/binop-xor2.c index 369b350..51b41dd 100644 --- a/gcc/testsuite/gcc.dg/binop-xor2.c +++ b/gcc/testsuite/gcc.dg/binop-xor2.c @@ -10,5 +10,5 @@ foo (int a, int b) /* We expect to see "<bb N>"; confirm that, so that we know to count it in the real test. */ /* { dg-final { scan-tree-dump-times "<bb\[^>\]*>" 1 "optimized" } } */ -/* { dg-final { scan-tree-dump-times "\^" 1 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "\\\^" 1 "optimized" } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */ diff --git a/gcc/testsuite/gcc.dg/binop-xor3.c b/gcc/testsuite/gcc.dg/binop-xor3.c index ef4b82f..97c7888 100644 --- a/gcc/testsuite/gcc.dg/binop-xor3.c +++ b/gcc/testsuite/gcc.dg/binop-xor3.c @@ -10,5 +10,5 @@ foo (int a, int b) /* We expect to see "<bb N>"; confirm that, so that we know to count it in the real test. */ /* { dg-final { scan-tree-dump-times "<bb\[^>\]*>" 1 "optimized" } } */ -/* { dg-final { scan-tree-dump-times "\^" 1 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "\\\^" 1 "optimized" } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */ diff --git a/gcc/testsuite/gcc.dg/binop-xor4.c b/gcc/testsuite/gcc.dg/binop-xor4.c index af228d96..f87950a 100644 --- a/gcc/testsuite/gcc.dg/binop-xor4.c +++ b/gcc/testsuite/gcc.dg/binop-xor4.c @@ -10,5 +10,5 @@ foo (int a, int b, int c) /* We expect to see "<bb N>"; confirm that, so that we know to count it in the real test. */ /* { dg-final { scan-tree-dump-times "<bb\[^>\]*>" 1 "optimized" } } */ -/* { dg-final { scan-tree-dump-times "\^" 1 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "\\\^" 1 "optimized" } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */ diff --git a/gcc/testsuite/gcc.dg/binop-xor5.c b/gcc/testsuite/gcc.dg/binop-xor5.c index 5f2b8df..256c4bf 100644 --- a/gcc/testsuite/gcc.dg/binop-xor5.c +++ b/gcc/testsuite/gcc.dg/binop-xor5.c @@ -10,6 +10,6 @@ foo (int a, int b, int c) /* We expect to see "<bb N>"; confirm that, so that we know to count it in the real test. */ /* { dg-final { scan-tree-dump-times "<bb\[^>\]*>" 1 "optimized" } } */ -/* { dg-final { scan-tree-dump-times "\^" 1 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "\\\^" 1 "optimized" } } */ /* { dg-final { scan-tree-dump-times "\&" 1 "optimized" } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */ |