aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/cmov6.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/cmov6.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/cmov6.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/cmov6.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/cmov6.c
deleted file mode 100644
index 535326e4c..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/cmov6.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -march=k8" } */
-/* { dg-final { scan-assembler "cmov\[^6\]" } } */
-
-/* Verify that blocks are converted to conditional moves. */
-extern int bar (int, int);
-int foo (int c, int d, int e)
-{
- int a, b;
-
- if (c)
- {
- a = 10;
- b = d;
- }
- else
- {
- a = e;
- b = 20;
- }
- return bar (a, b);
-}