[llvm] r198966 - Fixing build break: should be in the if statement, not outside.

Tom Roeder tmroeder at google.com
Fri Jan 10 14:55:25 PST 2014


Author: tmroeder
Date: Fri Jan 10 16:55:25 2014
New Revision: 198966

URL: http://llvm.org/viewvc/llvm-project?rev=198966&view=rev
Log:
Fixing build break: should be in the if statement, not outside.

Modified:
    llvm/trunk/tools/gold/CMakeLists.txt

Modified: llvm/trunk/tools/gold/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/gold/CMakeLists.txt?rev=198966&r1=198965&r2=198966&view=diff
==============================================================================
--- llvm/trunk/tools/gold/CMakeLists.txt (original)
+++ llvm/trunk/tools/gold/CMakeLists.txt Fri Jan 10 16:55:25 2014
@@ -19,6 +19,8 @@ else()
   add_llvm_loadable_module(LLVMgold
     gold-plugin.cpp
     )
-endif()
 
 target_link_libraries(LLVMgold LTO)
+
+endif()
+





More information about the llvm-commits mailing list