Skip to content

Commit ba5ac65

Browse files
authored
Merge pull request rust-lang#160 from vext01/unsupported-icmp
Reject icmp instructions we don't handle.
2 parents c47d7c9 + 0121f6b commit ba5ac65

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

llvm/lib/YkIR/YkIRWriter.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -874,6 +874,15 @@ class YkIRWriter {
874874

875875
void serialiseICmpInst(ICmpInst *I, FuncLowerCtxt &FLCtxt, unsigned BBIdx,
876876
unsigned &InstIdx) {
877+
// We don't support:
878+
// - vectors
879+
// - pointer comparison
880+
if (I->getOperand(0)->getType()->isVectorTy() ||
881+
I->getOperand(0)->getType()->isPointerTy()) {
882+
serialiseUnimplementedInstruction(I, FLCtxt, BBIdx, InstIdx);
883+
return;
884+
}
885+
877886
// opcode:
878887
serialiseOpcode(OpCodeICmp);
879888
// type_idx:

0 commit comments

Comments
 (0)