From: Hans Wennborg Date: Wed, 12 Feb 2014 21:40:46 +0000 (+0000) Subject: Remove FIXME and hardcoded triple from this test (PR18251) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e76625dcc45865707b199bcd63d727b70fc05b1;p=clang Remove FIXME and hardcoded triple from this test (PR18251) We don't support using the MS ABI with non-x86/x86_64 targets anyway. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201260 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/2004-03-08-ReinterpretCastCopy.cpp b/test/CodeGenCXX/2004-03-08-ReinterpretCastCopy.cpp index e7e34f1d71..a4411fc468 100644 --- a/test/CodeGenCXX/2004-03-08-ReinterpretCastCopy.cpp +++ b/test/CodeGenCXX/2004-03-08-ReinterpretCastCopy.cpp @@ -1,7 +1,5 @@ // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - - -// FIXME: Don't assert for non-Win32 triples (PR18251). -// RUN: %clang_cc1 -triple i686-pc-win32 -fno-rtti -emit-llvm %s -o - +// RUN: %clang_cc1 -triple %ms_abi_triple -fno-rtti -emit-llvm %s -o - struct A { virtual void Method() = 0;