From 4e22ee6745d12c935ee29cb1fbc99d753adf125f Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Fri, 4 Aug 2017 16:59:29 +0000 Subject: [ConstantInt] Use ConstantInt::getValue instead of Constant::getUniqueInteger in a few places where we obviously have a ConstantInt. NFC getUniqueInteger will ultimately call ConstantInt::getValue, but calling ConstantInt::getValue should be inlined. llvm-svn: 310069 --- llvm/lib/Analysis/LazyValueInfo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/Analysis/LazyValueInfo.cpp') diff --git a/llvm/lib/Analysis/LazyValueInfo.cpp b/llvm/lib/Analysis/LazyValueInfo.cpp index e6b013f79a7..e72eedeaabe 100644 --- a/llvm/lib/Analysis/LazyValueInfo.cpp +++ b/llvm/lib/Analysis/LazyValueInfo.cpp @@ -151,7 +151,7 @@ public: Optional asConstantInteger() const { if (isConstant() && isa(Val)) { - return Val->getUniqueInteger(); + return cast(Val)->getValue(); } else if (isConstantRange() && Range.isSingleElement()) { return *Range.getSingleElement(); } @@ -1384,7 +1384,7 @@ static LVILatticeVal constantFoldUser(Value *Val, Value *Op, if (auto *C = dyn_cast_or_null( SimplifyCastInst(CI->getOpcode(), OpConst, CI->getDestTy(), DL))) { - return LVILatticeVal::getRange(ConstantRange(C->getUniqueInteger())); + return LVILatticeVal::getRange(ConstantRange(C->getValue())); } } else if (auto *BO = dyn_cast(Val)) { bool Op0Match = BO->getOperand(0) == Op; @@ -1395,7 +1395,7 @@ static LVILatticeVal constantFoldUser(Value *Val, Value *Op, Value *RHS = Op1Match ? OpConst : BO->getOperand(1); if (auto *C = dyn_cast_or_null( SimplifyBinOp(BO->getOpcode(), LHS, RHS, DL))) { - return LVILatticeVal::getRange(ConstantRange(C->getUniqueInteger())); + return LVILatticeVal::getRange(ConstantRange(C->getValue())); } } return LVILatticeVal::getOverdefined(); -- cgit v1.2.3