]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/cpp/if-shift.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / cpp / if-shift.c
diff --git a/gcc/testsuite/gcc.dg/cpp/if-shift.c b/gcc/testsuite/gcc.dg/cpp/if-shift.c
deleted file mode 100644 (file)
index a55420a..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.  */
-
-/* { dg-do preprocess } */
-
-/* Test shift operators.  */
-
-#if 1 << 4 != 16
-#error         /* { dg-bogus "error" "<< +ve shift" } */
-#endif
-
-#if 19 >> 2 != 4
-#error         /* { dg-bogus "error" ">> +ve shift" } */
-#endif
-
-#if 17 << -2 != 17 >> 2
-#error         /* { dg-bogus "error" "<< -ve shift" } */
-#endif
-
-#if 25 >> -2 != 25 << 2
-#error         /* { dg-bogus "error" ">> -ve shift" } */
-#endif
-