Например, я хочу загрузить инструкцию на основе результатов сравнения ICmpInst. Есть способ сделать это?
ICmpInst* compareA = new ICmpInst(ICmpInst::ICMP_SGE, (Value*)A, (Value*)B);
ICmpInst* compareB = new ICmpInst(ICmpInst::ICMP_SGE, (Value*)B, (Value*)C);
// if compareA then we load some instruction... Not sure how to write this part
ReplaceInstWithInst(...);
// otherwise then we load this...
ReplaceInstWithInst(...);