aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-06-23 17:58:51 +0000
committerDouglas Gregor <dgregor@apple.com>2009-06-23 17:58:51 +0000
commitbb3231f7c491ce8d8945833a7515a25027e1c8a7 (patch)
tree40c973d3024ced24a2bf345d0a04642495036f68
parent7e9e36a23e07dfb0d7ceda3e76450073c0534f35 (diff)
Eliminate some unused code in CMa'e add_llvm_target. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73970 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xcmake/modules/AddLLVM.cmake5
1 files changed, 0 insertions, 5 deletions
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake
index 2b9b649da2..6dd1e475cf 100755
--- a/cmake/modules/AddLLVM.cmake
+++ b/cmake/modules/AddLLVM.cmake
@@ -62,9 +62,4 @@ macro(add_llvm_target target_name)
endif( TABLEGEN_OUTPUT )
include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR})
add_llvm_library(LLVM${target_name} ${ARGN} ${TABLEGEN_OUTPUT})
- if (FALSE)
- if( TABLEGEN_OUTPUT )
- add_dependencies(LLVM${target_name} ${target_name}Table_gen)
- endif( TABLEGEN_OUTPUT )
- endif ()
endmacro(add_llvm_target)