aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/cmov8.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/cmov8.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/cmov8.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/cmov8.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/cmov8.c
deleted file mode 100644
index 2d95c25da..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/cmov8.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* PR target/36936 */
-/* { dg-do compile } */
-/* { dg-require-effective-target ia32 } */
-/* { dg-options "-O2 -march=i686" } */
-/* { dg-final { scan-assembler "cmov\[^8\]" } } */
-
-int
-foo (int x)
-{
- if (x < 0)
- x = 1;
- return x;
-}