Makes most methods in SVals.h conform to the naming guide. Reviewed

by kremenek.

llvm-svn: 125687
This commit is contained in:
Zhanyong Wan
2011-02-16 21:13:32 +00:00
parent eaf2e4fdf1
commit 85a203ebdd
18 changed files with 46 additions and 47 deletions

View File

@@ -261,9 +261,9 @@ const GRState *SimpleConstraintManager::assumeSymRel(const GRState *state,
ASTContext &Ctx = StateMgr.getContext();
QualType T = Sym->getType(Ctx);
assert(T->isIntegerType() || Loc::IsLocType(T));
assert(T->isIntegerType() || Loc::isLocType(T));
unsigned bitwidth = Ctx.getTypeSize(T);
bool isSymUnsigned = T->isUnsignedIntegerType() || Loc::IsLocType(T);
bool isSymUnsigned = T->isUnsignedIntegerType() || Loc::isLocType(T);
// Convert the adjustment.
Adjustment.setIsUnsigned(isSymUnsigned);