diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-10-01 16:41:13 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-10-01 16:41:13 +0000 |
commit | 84c287e33cc3f46e7d6868de14809bd5ae4a84b1 (patch) | |
tree | ad37ce90aefb034b6343822dd390be8a46cbd31c /llvm/utils/TableGen/SetTheory.cpp | |
parent | 20dde1e8fb1c757eef7b3340f4500729abb6c0fa (diff) | |
download | bcm5719-llvm-84c287e33cc3f46e7d6868de14809bd5ae4a84b1.tar.gz bcm5719-llvm-84c287e33cc3f46e7d6868de14809bd5ae4a84b1.zip |
Move TableGen's parser and entry point into a library
This is the first step towards splitting LLVM and Clang's tblgen executables.
llvm-svn: 140951
Diffstat (limited to 'llvm/utils/TableGen/SetTheory.cpp')
-rw-r--r-- | llvm/utils/TableGen/SetTheory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/SetTheory.cpp b/llvm/utils/TableGen/SetTheory.cpp index 21ac09cb662..bef73f33eff 100644 --- a/llvm/utils/TableGen/SetTheory.cpp +++ b/llvm/utils/TableGen/SetTheory.cpp @@ -13,8 +13,8 @@ //===----------------------------------------------------------------------===// #include "SetTheory.h" -#include "Error.h" -#include "Record.h" +#include "llvm/TableGen/Error.h" +#include "llvm/TableGen/Record.h" #include "llvm/Support/Format.h" using namespace llvm; |