From: Chris Lattner Date: Wed, 4 Nov 2009 16:37:13 +0000 (+0000) Subject: this test has started failing due to an optimizer change. Clang tests X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7af5d19b138516244d042b6e2e94943ff4eadbc6;p=clang 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 --- 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