From: Hans Wennborg Date: Sat, 14 Dec 2013 17:04:17 +0000 (+0000) Subject: Add triple to CodeGenCXX/2004-03-08-ReinterpretCastCopy.cpp in MS ABI mode X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aca7da3008ad07da4284a32712cf61020e95c198;p=clang Add triple to CodeGenCXX/2004-03-08-ReinterpretCastCopy.cpp in MS ABI mode I don't think we should need a triple, but this allows us to run the test until we fix it (PR18251). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@197326 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/2004-03-08-ReinterpretCastCopy.cpp b/test/CodeGenCXX/2004-03-08-ReinterpretCastCopy.cpp index b2bb292130..e9071b1eb0 100644 --- a/test/CodeGenCXX/2004-03-08-ReinterpretCastCopy.cpp +++ b/test/CodeGenCXX/2004-03-08-ReinterpretCastCopy.cpp @@ -1,5 +1,7 @@ // RUN: %clang_cc1 -cxx-abi itanium -emit-llvm %s -o - -// RUN: %clang_cc1 -cxx-abi microsoft -fno-rtti -emit-llvm %s -o - + +// FIXME: Don't assert for non-Win32 triples (PR18251). +// RUN: %clang_cc1 -triple i686-pc-win32 -cxx-abi microsoft -fno-rtti -emit-llvm %s -o - struct A { virtual void Method() = 0;