aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2012-10-10 20:27:18 +0000
committerSean Silva <silvas@purdue.edu>2012-10-10 20:27:18 +0000
commitfff8287f10fe6cec945c3932025ed454a5c3476c (patch)
tree1eb418192c56fa7dd091128f8c4fd33f62c9d19b
parent8b43dbf9ead694a011944f7b33ed194d901d2313 (diff)
tblgen: Compile TableGen without RTTI.
TableGen no longer needs RTTI! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165651 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/TableGen/CMakeLists.txt2
-rw-r--r--lib/TableGen/Makefile2
-rw-r--r--utils/TableGen/CMakeLists.txt1
-rw-r--r--utils/TableGen/Makefile1
4 files changed, 0 insertions, 6 deletions
diff --git a/lib/TableGen/CMakeLists.txt b/lib/TableGen/CMakeLists.txt
index 28240f4a67..4f64eb4ff2 100644
--- a/lib/TableGen/CMakeLists.txt
+++ b/lib/TableGen/CMakeLists.txt
@@ -1,5 +1,3 @@
-## FIXME: This only requires RTTI because tblgen uses it. Fix that.
-set(LLVM_REQUIRES_RTTI 1)
set(LLVM_REQUIRES_EH 1)
add_llvm_library(LLVMTableGen
diff --git a/lib/TableGen/Makefile b/lib/TableGen/Makefile
index 44724389e1..732d8a197e 100644
--- a/lib/TableGen/Makefile
+++ b/lib/TableGen/Makefile
@@ -11,8 +11,6 @@ LEVEL = ../..
LIBRARYNAME = LLVMTableGen
BUILD_ARCHIVE = 1
-## FIXME: This only requires RTTI because tblgen uses it. Fix that.
-REQUIRES_RTTI = 1
REQUIRES_EH = 1
include $(LEVEL)/Makefile.common
diff --git a/utils/TableGen/CMakeLists.txt b/utils/TableGen/CMakeLists.txt
index 0e14cbae38..b8a6daf9e0 100644
--- a/utils/TableGen/CMakeLists.txt
+++ b/utils/TableGen/CMakeLists.txt
@@ -1,5 +1,4 @@
set(LLVM_REQUIRES_EH 1)
-set(LLVM_REQUIRES_RTTI 1)
set(LLVM_LINK_COMPONENTS Support)
add_tablegen(llvm-tblgen LLVM
diff --git a/utils/TableGen/Makefile b/utils/TableGen/Makefile
index 0c4619d1a2..bdf0ba01fb 100644
--- a/utils/TableGen/Makefile
+++ b/utils/TableGen/Makefile
@@ -11,7 +11,6 @@ LEVEL = ../..
TOOLNAME = llvm-tblgen
USEDLIBS = LLVMTableGen.a LLVMSupport.a
REQUIRES_EH := 1
-REQUIRES_RTTI := 1
# This tool has no plugins, optimize startup time.
TOOL_NO_EXPORTS = 1