r233821 - Fix inlinehint.cpp with an explicit triple to avoid x86_thiscallcc problems
Reid Kleckner
reid at kleckner.net
Wed Apr 1 09:48:54 PDT 2015
Author: rnk
Date: Wed Apr 1 11:48:54 2015
New Revision: 233821
URL: http://llvm.org/viewvc/llvm-project?rev=233821&view=rev
Log:
Fix inlinehint.cpp with an explicit triple to avoid x86_thiscallcc problems
Modified:
cfe/trunk/test/CodeGenCXX/inlinehint.cpp
Modified: cfe/trunk/test/CodeGenCXX/inlinehint.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/inlinehint.cpp?rev=233821&r1=233820&r2=233821&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/inlinehint.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/inlinehint.cpp Wed Apr 1 11:48:54 2015
@@ -1,5 +1,4 @@
-// RUN: %clang_cc1 -triple %itanium_abi_triple %s -emit-llvm -o - | FileCheck %s
-// RUN: %clang_cc1 -triple x86_64-apple-macosx %s -emit-llvm -o - | FileCheck %s
+// RUN: %clang_cc1 -triple x86_64-linux %s -emit-llvm -o - | FileCheck %s
inline void InlineFunc() {}
// CHECK: define linkonce_odr void @_Z10InlineFuncv() #[[INLINEHINTATTR:[0-9]+]]
More information about the cfe-commits
mailing list