mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
Bugfix for test/Regression/Other/2002-03-11-ExprAssertion.ll
llvm-svn: 1856
This commit is contained in:
parent
797668548c
commit
35c1c7353b
@ -202,9 +202,8 @@ static ExprType handleAddition(ExprType Left, ExprType Right, Value *V) {
|
||||
//
|
||||
static inline ExprType negate(const ExprType &E, Value *V) {
|
||||
const Type *Ty = V->getType();
|
||||
const Type *ETy = E.getExprType(Ty);
|
||||
ConstantInt *Zero = getUnsignedConstant(0, ETy);
|
||||
ConstantInt *One = getUnsignedConstant(1, ETy);
|
||||
ConstantInt *Zero = getUnsignedConstant(0, Ty);
|
||||
ConstantInt *One = getUnsignedConstant(1, Ty);
|
||||
ConstantInt *NegOne = cast<ConstantInt>(*Zero - *One);
|
||||
if (NegOne == 0) return V; // Couldn't subtract values...
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user