diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 18:09:29 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 18:09:29 +0000 |
commit | ecbdcf2ae056404cde449783a1ec8ba798c36562 (patch) | |
tree | e5918bad5cc8552b09e816efe30027b7b016749c /utils/TableGen/TableGen.cpp | |
parent | be9d9a153f7c26b2c450b4f33487c81e02b8cf36 (diff) |
Rename LLVMCCConfigurationEmitter to LLVMCConfigurationEmitter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50748 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/TableGen.cpp')
-rw-r--r-- | utils/TableGen/TableGen.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/TableGen/TableGen.cpp b/utils/TableGen/TableGen.cpp index cc996c5846..1bc2790f09 100644 --- a/utils/TableGen/TableGen.cpp +++ b/utils/TableGen/TableGen.cpp @@ -31,7 +31,7 @@ #include "DAGISelEmitter.h" #include "SubtargetEmitter.h" #include "IntrinsicEmitter.h" -#include "LLVMCCConfigurationEmitter.h" +#include "LLVMCConfigurationEmitter.h" #include <algorithm> #include <cstdio> #include <fstream> @@ -104,7 +104,7 @@ RecordKeeper llvm::Records; /// ParseFile - this function begins the parsing of the specified tablegen /// file. -static bool ParseFile(const std::string &Filename, +static bool ParseFile(const std::string &Filename, const std::vector<std::string> &IncludeDirs) { std::string ErrorStr; MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrorStr); @@ -112,13 +112,13 @@ static bool ParseFile(const std::string &Filename, cerr << "Could not open input file '" + Filename + "': " << ErrorStr <<"\n"; return true; } - + TGParser Parser(F); - + // Record the location of the include directory so that the lexer can find // it later. Parser.setIncludeDirs(IncludeDirs); - + return Parser.ParseFile(); } |