Skip to content

Commit 41f0e81

Browse files
committed
format
1 parent 34732d6 commit 41f0e81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Analysis/ConstantFolding.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1487,8 +1487,8 @@ Constant *llvm::ConstantFoldCastOperand(unsigned Opcode, Constant *C,
14871487
if (CE->isCast())
14881488
if (unsigned NewOp = CastInst::isEliminableCastPair(
14891489
Instruction::CastOps(CE->getOpcode()),
1490-
Instruction::CastOps(Opcode),
1491-
CE->getOperand(0)->getType(), C->getType(), DestTy, &DL))
1490+
Instruction::CastOps(Opcode), CE->getOperand(0)->getType(),
1491+
C->getType(), DestTy, &DL))
14921492
return ConstantFoldCastOperand(NewOp, CE->getOperand(0), DestTy, DL);
14931493

14941494
switch (Opcode) {

0 commit comments

Comments
 (0)