From 4668e3cd6a7bbf3aa7003860189dc7350fed9d92 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 12 Oct 2012 01:34:07 +0000 Subject: Revert r165777, "Mark function as 'used' so that LTO doesn't try to get rid of it." llvm-svn: 165780 --- llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp') diff --git a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp index 1eff4d649ec..5e2af030f20 100644 --- a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp @@ -633,7 +633,7 @@ TEST_F(JITTest, AvailableExternallyGlobalIsntEmitted) { // This function is intentionally defined differently in the statically-compiled // program from the IR input to the JIT to assert that the JIT doesn't use its // definition. -extern "C" int32_t JITTest_AvailableExternallyFunction() __attribute__((used)) { +extern "C" int32_t JITTest_AvailableExternallyFunction() { return 42; } namespace { -- cgit v1.2.3