aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20021212-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20021212-1.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/20021212-1.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20021212-1.c b/gcc/testsuite/gcc.c-torture/compile/20021212-1.c
deleted file mode 100644
index b89669d75b8..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/20021212-1.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* PR optimization/8334 */
-/* Verify that GCC produces valid operands
- after simplifying an addition. */
-
-void foo(int m, int n, double *f)
-{
- int i, j, k = 1;
-
- for (j = 0; j < n; j++) {
- for (i = k; i < m; i++) {
- f[i] = (double) (i * j);
- f[i + j] = (double) ((i + 1) * j);
- }
- }
-}