diff options
author | Tom Roeder <tmroeder@google.com> | 2014-01-10 22:55:25 +0000 |
---|---|---|
committer | Tom Roeder <tmroeder@google.com> | 2014-01-10 22:55:25 +0000 |
commit | 9b41aa7275bc8c560e93a0a6fa00ab090c351562 (patch) | |
tree | 254d9239279ee3990a62edafe74501c4f9ee5bfa /llvm/tools | |
parent | 50b892e7d5eddf7c323f268452847fc1408e1042 (diff) | |
download | bcm5719-llvm-9b41aa7275bc8c560e93a0a6fa00ab090c351562.tar.gz bcm5719-llvm-9b41aa7275bc8c560e93a0a6fa00ab090c351562.zip |
Fixing build break: should be in the if statement, not outside.
llvm-svn: 198966
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/gold/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/tools/gold/CMakeLists.txt b/llvm/tools/gold/CMakeLists.txt index 98e26421e01..887d896cd77 100644 --- a/llvm/tools/gold/CMakeLists.txt +++ b/llvm/tools/gold/CMakeLists.txt @@ -19,6 +19,8 @@ else() add_llvm_loadable_module(LLVMgold gold-plugin.cpp ) -endif() target_link_libraries(LLVMgold LTO) + +endif() + |