aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr43107.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr43107.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr43107.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr43107.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr43107.c
deleted file mode 100644
index 879652931..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr43107.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* PR target/43107 */
-/* { dg-do compile } */
-/* { dg-options "-O3 -mavx" } */
-
-extern void bar (float b[4][4]);
-
-void
-foo ()
-{
- float a[4][4], b[4][4];
- int i, j;
- for (i = 0; i < 4; i++)
- {
- for (j = 0; j < 4; j++)
- a[i][j] = 0;
- for (j = 0; j < 4; j++)
- b[i][j] = a[i][j];
- }
- bar (b);
-}