mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-22 09:25:44 +00:00
InstCombine: Make sure we use the pre-zext type when creating a constant of a value that is zext'd.
Fixes PR13250. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164377 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -477,7 +477,8 @@ Instruction *InstCombiner::visitUDiv(BinaryOperator &I) {
|
||||
if (match(Op1, m_Shl(m_Power2(CI), m_Value(N))) ||
|
||||
match(Op1, m_ZExt(m_Shl(m_Power2(CI), m_Value(N))))) {
|
||||
if (*CI != 1)
|
||||
N = Builder->CreateAdd(N, ConstantInt::get(I.getType(),CI->logBase2()));
|
||||
N = Builder->CreateAdd(N,
|
||||
ConstantInt::get(N->getType(), CI->logBase2()));
|
||||
if (ZExtInst *Z = dyn_cast<ZExtInst>(Op1))
|
||||
N = Builder->CreateZExt(N, Z->getDestTy());
|
||||
if (I.isExact())
|
||||
|
Reference in New Issue
Block a user