From 35647a1478c82fe2a28b44cdb2bb67df1d6821e5 Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Tue, 25 Jul 2017 20:58:14 +0000 Subject: [PATCH] [CMake] Fix broken builds from r309029 Fixing the mismatched beginning if and endif contents. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@309030 91177308-0d34-0410-b5e6-96231b3b80d8 --- cmake/modules/TableGen.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/TableGen.cmake b/cmake/modules/TableGen.cmake index 8ee7f970991..7f17f7016b6 100644 --- a/cmake/modules/TableGen.cmake +++ b/cmake/modules/TableGen.cmake @@ -121,7 +121,7 @@ if(LLVM_USE_HOST_TOOLS AND NOT TARGET NATIVE_LIB_LLVMTABLEGEN) COMMENT "Building libLLVMTableGen for native TableGen..." USES_TERMINAL) add_custom_target(NATIVE_LIB_LLVMTABLEGEN DEPENDS LIB_LLVMTABLEGEN) -endif(LLVM_USE_HOST_TOOLS) +endif() macro(add_tablegen target project) set(${target}_OLD_LLVM_LINK_COMPONENTS ${LLVM_LINK_COMPONENTS}) -- 2.40.0