aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2005-06-15-ExpandGotoInternalProblem.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2005-06-15-ExpandGotoInternalProblem.c')
-rw-r--r--test/CodeGen/2005-06-15-ExpandGotoInternalProblem.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/CodeGen/2005-06-15-ExpandGotoInternalProblem.c b/test/CodeGen/2005-06-15-ExpandGotoInternalProblem.c
deleted file mode 100644
index 0698601ad133..000000000000
--- a/test/CodeGen/2005-06-15-ExpandGotoInternalProblem.c
+++ /dev/null
@@ -1,14 +0,0 @@
-// RUN: %clang_cc1 -std=c99 %s -emit-llvm -o - | \
-// RUN: opt -O3 -disable-output
-// PR580
-
-int X, Y;
-int foo() {
- int i;
- for (i=0; i<100; i++ )
- {
- break;
- i = ( X || Y ) ;
- }
-}
-