diff options
author | Chris Lattner <sabre@nondot.org> | 2011-07-20 06:37:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-07-20 06:37:11 +0000 |
commit | dba38736a5261990f44622592dca99b1f02b94dd (patch) | |
tree | a9e2238bf5acdfab373b372e1e77247992948b1a /clang/lib/Driver/Tools.cpp | |
parent | e3063f022bc4860f1bf593b54cf70e67966b18e3 (diff) | |
download | bcm5719-llvm-dba38736a5261990f44622592dca99b1f02b94dd.tar.gz bcm5719-llvm-dba38736a5261990f44622592dca99b1f02b94dd.zip |
introduce a centralized place to introduce and inject llvm types into the
clang namespace. There are a number of LLVM types that are used pervasively
and it doesn't make sense to keep qualifying them. Start with casting
operators.
llvm-svn: 135574
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
-rw-r--r-- | clang/lib/Driver/Tools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index b47a6bdf3b4..c54ced2d1d0 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -999,7 +999,7 @@ static bool ShouldDisableCFI(const ArgList &Args, /// \brief Check whether the given input tree contains any compilation actions. static bool ContainsCompileAction(const Action *A) { - if (isa<CompileJobAction>(A)) + if (llvm::isa<CompileJobAction>(A)) return true; for (Action::const_iterator it = A->begin(), ie = A->end(); it != ie; ++it) |