[PATCH] D61558: [Constants] Simplify type checking switch in ConstantExpr::get.
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun May 5 10:19:57 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL359985: [Constants] Simplify type checking switch in ConstantExpr::get. (authored by ctopper, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D61558?vs=198158&id=198183#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D61558/new/
https://reviews.llvm.org/D61558
Files:
llvm/trunk/lib/IR/Constants.cpp
Index: llvm/trunk/lib/IR/Constants.cpp
===================================================================
--- llvm/trunk/lib/IR/Constants.cpp
+++ llvm/trunk/lib/IR/Constants.cpp
@@ -1856,51 +1856,31 @@
case Instruction::Add:
case Instruction::Sub:
case Instruction::Mul:
- assert(C1->getType() == C2->getType() && "Op types should be identical!");
+ case Instruction::UDiv:
+ case Instruction::SDiv:
+ case Instruction::URem:
+ case Instruction::SRem:
assert(C1->getType()->isIntOrIntVectorTy() &&
"Tried to create an integer operation on a non-integer type!");
break;
case Instruction::FAdd:
case Instruction::FSub:
case Instruction::FMul:
- assert(C1->getType() == C2->getType() && "Op types should be identical!");
- assert(C1->getType()->isFPOrFPVectorTy() &&
- "Tried to create a floating-point operation on a "
- "non-floating-point type!");
- break;
- case Instruction::UDiv:
- case Instruction::SDiv:
- assert(C1->getType() == C2->getType() && "Op types should be identical!");
- assert(C1->getType()->isIntOrIntVectorTy() &&
- "Tried to create an arithmetic operation on a non-arithmetic type!");
- break;
case Instruction::FDiv:
- assert(C1->getType() == C2->getType() && "Op types should be identical!");
- assert(C1->getType()->isFPOrFPVectorTy() &&
- "Tried to create an arithmetic operation on a non-arithmetic type!");
- break;
- case Instruction::URem:
- case Instruction::SRem:
- assert(C1->getType() == C2->getType() && "Op types should be identical!");
- assert(C1->getType()->isIntOrIntVectorTy() &&
- "Tried to create an arithmetic operation on a non-arithmetic type!");
- break;
case Instruction::FRem:
- assert(C1->getType() == C2->getType() && "Op types should be identical!");
assert(C1->getType()->isFPOrFPVectorTy() &&
- "Tried to create an arithmetic operation on a non-arithmetic type!");
+ "Tried to create a floating-point operation on a "
+ "non-floating-point type!");
break;
case Instruction::And:
case Instruction::Or:
case Instruction::Xor:
- assert(C1->getType() == C2->getType() && "Op types should be identical!");
assert(C1->getType()->isIntOrIntVectorTy() &&
"Tried to create a logical operation on a non-integral type!");
break;
case Instruction::Shl:
case Instruction::LShr:
case Instruction::AShr:
- assert(C1->getType() == C2->getType() && "Op types should be identical!");
assert(C1->getType()->isIntOrIntVectorTy() &&
"Tried to create a shift operation on a non-integer type!");
break;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61558.198183.patch
Type: text/x-patch
Size: 2688 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190505/080460c3/attachment-0001.bin>
More information about the llvm-commits
mailing list