]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/cpp/paste3.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / cpp / paste3.c
diff --git a/gcc/testsuite/gcc.dg/cpp/paste3.c b/gcc/testsuite/gcc.dg/cpp/paste3.c
deleted file mode 100644 (file)
index 0c9c52d..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.  */
-
-/* { dg-do compile } */
-
-#define plus +
-
-void foo()
-{
-  int a, b = 1;
-
-  /* The correct "a = 1 + ++b" will compile.
-     The incorrect "a = 1 +++b" won't.  */
-  a = 1 plus++b;
-}