diff options
author | Bob Wilson <bob.wilson@apple.com> | 2014-07-01 04:56:06 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2014-07-01 04:56:06 +0000 |
commit | 84941b92e67376fe13e2a4c5b589c3d3e3ebe2a5 (patch) | |
tree | 7448ecb03dfdb98fbcdf63dc799c621a1e6cc609 /clang/test/CodeGen/indirect-goto.c | |
parent | 3fe1e09a6e285a4792224969b582ada1bd6747f8 (diff) | |
download | bcm5719-llvm-84941b92e67376fe13e2a4c5b589c3d3e3ebe2a5.tar.gz bcm5719-llvm-84941b92e67376fe13e2a4c5b589c3d3e3ebe2a5.zip |
Temporarily disable the indirect-goto.c test.
llvm r212077 causes this test to fail. We need to reorder some passes and
possibly make other changes to reenable the optimization being tested here.
llvm-svn: 212091
Diffstat (limited to 'clang/test/CodeGen/indirect-goto.c')
-rw-r--r-- | clang/test/CodeGen/indirect-goto.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/CodeGen/indirect-goto.c b/clang/test/CodeGen/indirect-goto.c index 7a3d7176519..bea83ee264e 100644 --- a/clang/test/CodeGen/indirect-goto.c +++ b/clang/test/CodeGen/indirect-goto.c @@ -1,4 +1,5 @@ -// RUN: %clang_cc1 -triple i386-unknown-unknown -O3 -emit-llvm -o - %s | grep "ret i32 2520" +// RUN: %clang_cc1 -triple i386-unknown-unknown -O3 -emit-llvm -o - %s +// DISABLED: %clang_cc1 -triple i386-unknown-unknown -O3 -emit-llvm -o - %s | grep "ret i32 2520" static int foo(unsigned i) { void *addrs[] = { &&L1, &&L2, &&L3, &&L4, &&L5 }; |