]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20020904-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20020904-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20020904-1.c b/gcc/testsuite/gcc.c-torture/execute/20020904-1.c
deleted file mode 100644 (file)
index 24eeb0c..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/* PR c/7102 */
-
-/* Verify that GCC zero-extends integer constants
-   in unsigned binary operations. */
-
-typedef unsigned char u8;
-
-u8 fun(u8 y)
-{
-  u8 x=((u8)255)/y;
-  return x;
-}
-
-int main(void)
-{
-  if (fun((u8)2) != 127)
-    abort ();
-  return 0;
-}