From: Enrico Pertoso Date: Wed, 3 Jun 2015 09:10:58 +0000 (+0000) Subject: Fixes a typo in a comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0985ccfcae3cd98652ee4a81522fc7104466f3cb;p=clang Fixes a typo in a comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@238910 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp b/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp index 08ba26a530..275481f9e4 100644 --- a/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp @@ -199,7 +199,7 @@ GenericTaintChecker::TaintPropagationRule::getTaintPropagationRule( const FunctionDecl *FDecl, StringRef Name, CheckerContext &C) { - // TODO: Currently, we might loose precision here: we always mark a return + // TODO: Currently, we might lose precision here: we always mark a return // value as tainted even if it's just a pointer, pointing to tainted data. // Check for exact name match for functions without builtin substitutes.