]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/cpp/charconst-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / cpp / charconst-2.c
diff --git a/gcc/testsuite/gcc.dg/cpp/charconst-2.c b/gcc/testsuite/gcc.dg/cpp/charconst-2.c
deleted file mode 100644 (file)
index 59fa500..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Copyright (C) 2001 Free Software Foundation, Inc.  */
-
-/* { dg-do compile } */
-/* { dg-options "-fsigned-char" } */
-
-/* Crosscompiling from i686-linux (32-bit) to x86_64-linux (64-bit)
-   gave extra warnings on the two assignments:
-   warning: large integer implicitly truncated to unsigned type
-   warning: overflow in implicit constant conversion
-   This test has been added as a regression test after fixing the bug
-   by Andreas Jaeger, 23 Nov 2001.  */
-int
-main (void)
-{
-  signed char c = '\xff';
-  unsigned char d = '\xff';
-  
-  return 0;
-}