diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/cpp/tr-str.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/cpp/tr-str.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/tr-str.c b/gcc/testsuite/gcc.dg/cpp/tr-str.c deleted file mode 100644 index 342347381d0..00000000000 --- a/gcc/testsuite/gcc.dg/cpp/tr-str.c +++ /dev/null @@ -1,17 +0,0 @@ -/* Test whether traditional stringify works. */ -/* { dg-do run } */ -/* { dg-options "-traditional-cpp" } */ -#define foo(a, b) c="a"; d="b"; - -extern void abort (); - -int main () -{ - char *c, *d; - - foo (p, q); - if (c[0] != 'p' || d[0] != 'q') - abort (); - - exit (0); -} |