aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/branch-cost2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/branch-cost2.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/branch-cost2.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/branch-cost2.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/branch-cost2.c
deleted file mode 100644
index 4d754d57b..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/branch-cost2.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -fdump-tree-gimple -mbranch-cost=2" } */
-
-extern int doo (void);
-
-int
-foo (int a, int b)
-{
- if (a && b)
- return doo ();
- return 0;
-}
-
-/* { dg-final { scan-tree-dump-times "if " 1 "gimple" } } */
-/* { dg-final { scan-tree-dump-times " & " 1 "gimple" } } */
-/* { dg-final { cleanup-tree-dump "gimple" } } */