- Renamed Type::isIntegral() to Type::isInteger()
- Added new method Type::isIntegral() that is the same as isInteger, but
also accepts bool.
llvm-svn: 3574
This commit is contained in:
@@ -165,7 +165,7 @@ static bool PeepholeOptimizeAddCast(BasicBlock *BB, BasicBlock::iterator &BI,
|
||||
}
|
||||
|
||||
// Only proceed if we have detected all of our conditions successfully...
|
||||
if (!CompTy || !SrcPtr || !OffsetVal->getType()->isIntegral())
|
||||
if (!CompTy || !SrcPtr || !OffsetVal->getType()->isInteger())
|
||||
return false;
|
||||
|
||||
std::vector<Value*> Indices;
|
||||
|
||||
Reference in New Issue
Block a user