1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/lib/TableGen/CMakeLists.txt
Joerg Sonnenberger 839f6c1a88 Remove exception handling usage from tblgen.
Most places can use PrintFatalError as the unwinding mechanism was not
used for anything other than printing the error. The single exception
was CodeGenDAGPatterns.cpp, where intermediate errors during type
resolution were ignored to simplify incremental platform development.
This use is replaced by an error flag in TreePattern and bailout earlier
in various places if it is set. 

llvm-svn: 166712
2012-10-25 20:33:17 +00:00

10 lines
141 B
CMake

add_llvm_library(LLVMTableGen
Error.cpp
Main.cpp
Record.cpp
StringMatcher.cpp
TableGenBackend.cpp
TGLexer.cpp
TGParser.cpp
)