diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-06-07 23:22:09 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-06-07 23:22:09 +0000 |
commit | c34ce3fa613d5e4a283e53615fceafd17390445b (patch) | |
tree | 8145f4405b4b445b815d3e32552d2a48b2107423 /lib/Frontend/CompilerInstance.cpp | |
parent | 05a7f3ddce9a88249b05b896e70f66e9ed381743 (diff) |
Frontend: Lift InputKind enumeration to top level.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105577 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInstance.cpp')
-rw-r--r-- | lib/Frontend/CompilerInstance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/CompilerInstance.cpp b/lib/Frontend/CompilerInstance.cpp index 8bedf50c27..4f6ed56410 100644 --- a/lib/Frontend/CompilerInstance.cpp +++ b/lib/Frontend/CompilerInstance.cpp @@ -491,7 +491,7 @@ bool CompilerInstance::ExecuteAction(FrontendAction &Act) { // If we aren't using an AST file, setup the file and source managers and // the preprocessor. - bool IsAST = getFrontendOpts().Inputs[i].first == FrontendOptions::IK_AST; + bool IsAST = getFrontendOpts().Inputs[i].first == IK_AST; if (!IsAST) { if (!i) { // Create a file manager object to provide access to and cache the |