aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20020309-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20020309-2.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/20020309-2.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20020309-2.c b/gcc/testsuite/gcc.c-torture/compile/20020309-2.c
deleted file mode 100644
index 77699e43d3d..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/20020309-2.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* This testcase ICEd on IA-32 at -O2, because loop was calling convert_modes
- between a MODE_FLOAT and MODE_INT class modes. */
-
-typedef union
-{
- double d;
- long long ll;
-} A;
-
-void
-foo (A x, A **y, A z)
-{
- for (; *y; y++)
- if (x.ll == 262 && (*y)->d == z.d)
- break;
-}