1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

JITTest.cpp: Use LLVM_ATTRIBUTE_USED, rather than __attribute__ directly!

llvm-svn: 165790
This commit is contained in:
NAKAMURA Takumi 2012-10-12 08:09:29 +00:00
parent f5276c5683
commit bf43385b69

View 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;
}