[cfe-commits] r139878 - /cfe/trunk/lib/Sema/SemaExpr.cpp
Richard Trieu
rtrieu at google.com
Thu Sep 15 16:51:29 PDT 2011
Author: rtrieu
Date: Thu Sep 15 18:51:29 2011
New Revision: 139878
URL: http://llvm.org/viewvc/llvm-project?rev=139878&view=rev
Log:
Change checkArithmeticNull() to use a NonNullType, instead of checking both the
LHSType and RHSType for everything.
Modified:
cfe/trunk/lib/Sema/SemaExpr.cpp
Modified: cfe/trunk/lib/Sema/SemaExpr.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaExpr.cpp?rev=139878&r1=139877&r2=139878&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaExpr.cpp (original)
+++ cfe/trunk/lib/Sema/SemaExpr.cpp Thu Sep 15 18:51:29 2011
@@ -7691,20 +7691,14 @@
bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts());
bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts());
- // Detect when a NULL constant is used improperly in an expression. These
- // are mainly cases where the null pointer is used as an integer instead
- // of a pointer.
- if (!LHSNull && !RHSNull)
- return;
-
QualType LHSType = LHS.get()->getType();
QualType RHSType = RHS.get()->getType();
+ QualType NonNullType = LHSNull ? RHSType : LHSType;
// Avoid analyzing cases where the result will either be invalid (and
// diagnosed as such) or entirely valid and not something to warn about.
- if (LHSType->isBlockPointerType() || LHSType->isMemberPointerType() ||
- LHSType->isFunctionType() || RHSType->isBlockPointerType() ||
- RHSType->isMemberPointerType() || RHSType->isFunctionType())
+ if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() ||
+ NonNullType->isMemberPointerType() || NonNullType->isFunctionType())
return;
// Comparison operations would not make sense with a null pointer no matter
@@ -7718,14 +7712,12 @@
// The rest of the operations only make sense with a null pointer
// if the other expression is a pointer.
- if (LHSNull == RHSNull || LHSType->isAnyPointerType() ||
- LHSType->canDecayToPointerType() || RHSType->isAnyPointerType() ||
- RHSType->canDecayToPointerType())
+ if (LHSNull == RHSNull || NonNullType->isAnyPointerType() ||
+ NonNullType->canDecayToPointerType())
return;
S.Diag(Loc, diag::warn_null_in_comparison_operation)
- << LHSNull /* LHS is NULL */
- << (LHSNull ? RHS.get()->getType() : LHS.get()->getType())
+ << LHSNull /* LHS is NULL */ << NonNullType
<< LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
}
/// CreateBuiltinBinOp - Creates a new built-in binary operation with
More information about the cfe-commits
mailing list