diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-11-04 19:04:23 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-11-04 19:04:23 +0000 |
commit | b0d9ce567f5aee3af94c290d7cd52b1582c27b4f (patch) | |
tree | cf2b86b94d23ce5d4469ea5b40b31358fa98b707 /include | |
parent | b0527283682c5f44fae24ae0a7e2e794f019fade (diff) | |
download | external_llvm-b0d9ce567f5aee3af94c290d7cd52b1582c27b4f.zip external_llvm-b0d9ce567f5aee3af94c290d7cd52b1582c27b4f.tar.gz external_llvm-b0d9ce567f5aee3af94c290d7cd52b1582c27b4f.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')
-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) |