diff options
author | Chris Lattner <sabre@nondot.org> | 2009-11-04 16:37:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-11-04 16:37:13 +0000 |
commit | 7af5d19b138516244d042b6e2e94943ff4eadbc6 (patch) | |
tree | e63ae5905f24a001180250a2a62cce60c5d6f8dc | |
parent | 1cf7f0adb4a9cbb9cc971a46af5eca9fcb6c566e (diff) |
this test has started failing due to an optimizer change. Clang tests
should only look at -O0 IR output not -O3 assembly output. XFAIL it for
now.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86029 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/virt.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/CodeGenCXX/virt.cpp b/test/CodeGenCXX/virt.cpp index 7911940c6d..0fb43e7dd9 100644 --- a/test/CodeGenCXX/virt.cpp +++ b/test/CodeGenCXX/virt.cpp @@ -7,6 +7,7 @@ // RUN: FileCheck -check-prefix LPOPT64 --input-file=%t-O3-64.s %s && // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -O3 -S %s -o %t-O3-32.s && // RUN: FileCheck -check-prefix LPOPT32 -input-file=%t-O3-32.s %s && +// XFAIL: * // RUN: true |