summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-02-20 13:42:30 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-02-20 13:42:30 +0000
commit1e3bb3fc4198ab93fae493d7c2a4237733231334 (patch)
tree151304ec5d95f2a5c747aeb76177eaccfbd050d3 /cmake
parente4ede0b83f9934d34944f0377c879d80c5799728 (diff)
downloadllvm-1e3bb3fc4198ab93fae493d7c2a4237733231334.tar.gz
llvm-1e3bb3fc4198ab93fae493d7c2a4237733231334.tar.bz2
llvm-1e3bb3fc4198ab93fae493d7c2a4237733231334.tar.xz
[CMake] Move intrinsics_gen to lib/Target out of add_public_tablegen_target.
add_public_tablegen_target is used somewhere. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201787 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/TableGen.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/TableGen.cmake b/cmake/modules/TableGen.cmake
index fdb47511dc..36404811d7 100644
--- a/cmake/modules/TableGen.cmake
+++ b/cmake/modules/TableGen.cmake
@@ -65,7 +65,7 @@ macro(add_public_tablegen_target target)
add_dependencies(${target} ${LLVM_COMMON_DEPENDS})
endif ()
set_target_properties(${target} PROPERTIES FOLDER "Tablegenning")
- list(APPEND LLVM_COMMON_DEPENDS ${target} intrinsics_gen)
+ list(APPEND LLVM_COMMON_DEPENDS ${target})
endif( TABLEGEN_OUTPUT )
endmacro()