]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/compile/20020710-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20020710-1.c
diff --git a/gcc/testsuite/gcc.c-torture/compile/20020710-1.c b/gcc/testsuite/gcc.c-torture/compile/20020710-1.c
deleted file mode 100644 (file)
index bf6c906..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-/* Red Hat bugzilla #68395
-   PR middle-end/7245
-   This testcase ICEd on IA-32 because shift & compare patterns
-   predicates allowed any immediate, but constraints allowed only
-   numbers from 1 to 31.  */
-
-void foo (int *x, unsigned int y)
-{
-  int a = y >> -13;
-  if (a)
-    *x = a;
-}