summaryrefslogtreecommitdiffstats
path: root/clang/lib/Driver/Tools.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-07-20 06:37:11 +0000
committerChris Lattner <sabre@nondot.org>2011-07-20 06:37:11 +0000
commitdba38736a5261990f44622592dca99b1f02b94dd (patch)
treea9e2238bf5acdfab373b372e1e77247992948b1a /clang/lib/Driver/Tools.cpp
parente3063f022bc4860f1bf593b54cf70e67966b18e3 (diff)
downloadbcm5719-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.cpp2
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)
OpenPOWER on IntegriCloud