diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-11-04 19:04:23 +0000 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2011-11-14 09:11:48 -0800 |
commit | 0e063f5eaa7e122ac7737e4a2edb7bc84b77f244 (patch) | |
tree | cf8fe8f5ba77c2908cb98c307e41e278bd65ab20 /include/llvm/CMakeLists.txt | |
parent | 5ad16989828cd342609b2035ec54e5c75b4e01f9 (diff) | |
download | external_llvm-0e063f5eaa7e122ac7737e4a2edb7bc84b77f244.zip external_llvm-0e063f5eaa7e122ac7737e4a2edb7bc84b77f244.tar.gz external_llvm-0e063f5eaa7e122ac7737e4a2edb7bc84b77f244.tar.bz2 |
build/cmake: Use tblgen macro directly instead of llvm_tablegen, which just
added a layer of indirection with no value (not even conciseness).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143727 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CMakeLists.txt')
-rw-r--r-- | include/llvm/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CMakeLists.txt b/include/llvm/CMakeLists.txt index 7956f8c..de3ff86 100644 --- a/include/llvm/CMakeLists.txt +++ b/include/llvm/CMakeLists.txt @@ -1,6 +1,6 @@ set(LLVM_TARGET_DEFINITIONS Intrinsics.td) -llvm_tablegen(Intrinsics.gen -gen-intrinsic) +tablegen(LLVM Intrinsics.gen -gen-intrinsic) add_custom_target(intrinsics_gen ALL DEPENDS ${llvm_builded_incs_dir}/Intrinsics.gen) |