aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaChecking.cpp
diff options
context:
space:
mode:
authorMatt Beaumont-Gay <matthewbg@google.com>2011-12-12 22:35:02 +0000
committerMatt Beaumont-Gay <matthewbg@google.com>2011-12-12 22:35:02 +0000
commit8ef8f431aaeed3d7418959c81dfaa677b44f05ed (patch)
tree68d9546a21321966543b909a88de8da676daf219 /lib/Sema/SemaChecking.cpp
parent364a59ed8f0b3adb6a9eb9f2d687650ec1d0d8e5 (diff)
Suppress -Warray-bounds in certain cases involving macros from system headers.
The motivation here is a "clever" implementation of strncmp(), which peels the first few comparisons via chained conditional expressions which ensure that the input arrays are known at compile time to be sufficiently large. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146430 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaChecking.cpp')
-rw-r--r--lib/Sema/SemaChecking.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp
index 1c93931b5c..bb567d0986 100644
--- a/lib/Sema/SemaChecking.cpp
+++ b/lib/Sema/SemaChecking.cpp
@@ -4275,7 +4275,7 @@ static bool IsTailPaddedMemberArray(Sema &S, llvm::APInt Size,
void Sema::CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr,
bool isSubscript, bool AllowOnePastEnd) {
- const Type* EffectiveType = getElementType(BaseExpr);
+ const Type *EffectiveType = getElementType(BaseExpr);
BaseExpr = BaseExpr->IgnoreParenCasts();
IndexExpr = IndexExpr->IgnoreParenCasts();
@@ -4381,6 +4381,16 @@ void Sema::CheckArrayAccess(const Expr *expr) {
switch (expr->getStmtClass()) {
case Stmt::ArraySubscriptExprClass: {
const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr);
+ // Suppress the warning if the subscript expression (as identified by
+ // the ']' location) and the index expression are both from macro
+ // expansions within a system header.
+ SourceLocation RBracketLoc = SourceMgr.getSpellingLoc(
+ ASE->getRBracketLoc());
+ SourceLocation IndexLoc = SourceMgr.getSpellingLoc(
+ ASE->getIdx()->IgnoreParens()->getLocStart());
+ if (SourceMgr.isFromSameFile(RBracketLoc, IndexLoc) &&
+ SourceMgr.isInSystemHeader(RBracketLoc))
+ return;
CheckArrayAccess(ASE->getBase(), ASE->getIdx(), true,
AllowOnePastEnd > 0);
return;