diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2012-01-07 22:52:07 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2012-01-07 22:52:07 +0000 |
commit | 2215eef02c3ac84c3189e5ac694326038226b467 (patch) | |
tree | 695bd2d0b2369705453ede8c0a266d75aed922e7 /lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp | |
parent | 0b536f328121d5bf8bdf7e98887410cde131ac39 (diff) |
Remove unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@147744 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp b/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp index da57a190b4..12f5be416a 100644 --- a/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp @@ -181,7 +181,6 @@ bool GenericTaintChecker::checkPre(const CallExpr *CE, CheckerContext &C) const{ if (checkUncontrolledFormatString(CE, C)) return true; - StringRef Name = C.getCalleeName(CE); return false; } |