libirm icon indicating copy to clipboard operation
libirm copied to clipboard

Low-level IR mutations for LLVM Bitcode

Results 1 libirm issues
Sort by recently updated
recently updated
newest added

This line: ``` if (instruction->getOpcode() != llvm::Instruction::Call && ``` prevents the code that follows it to be executed for the `InvokeInst` instructions. Changing it to ``` if (instruction->getOpcode() != llvm::Instruction::Call...