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 | 9b491e79fcb5ed20be6c3d8804a316efa3c3e9e5 (patch) | |
| tree | 969d0ad8c768f65f4c401d16d566297495996929 /clang/lib/Frontend/CompilerInstance.cpp | |
| parent | 3e11152de39bc32e8e557fbdc0d7ebafec25aca0 (diff) | |
| download | bcm5719-llvm-9b491e79fcb5ed20be6c3d8804a316efa3c3e9e5.tar.gz bcm5719-llvm-9b491e79fcb5ed20be6c3d8804a316efa3c3e9e5.zip | |
Frontend: Lift InputKind enumeration to top level.
llvm-svn: 105577
Diffstat (limited to 'clang/lib/Frontend/CompilerInstance.cpp')
| -rw-r--r-- | clang/lib/Frontend/CompilerInstance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp index 8bedf50c274..4f6ed564109 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/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 |

