JITTest.cpp: Use LLVM_ATTRIBUTE_USED, rather than __attribute__ directly!
authorNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 12 Oct 2012 08:09:29 +0000 (08:09 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 12 Oct 2012 08:09:29 +0000 (08:09 +0000)
llvm-svn: 165790

llvm/unittests/ExecutionEngine/JIT/JITTest.cpp

index 44ea213..ae6855e 100644 (file)
@@ -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() LLVM_ATTRIBUTE_USED;
 extern "C" int32_t JITTest_AvailableExternallyFunction() {
   return 42;
 }