<div dir="ltr">Hello Everyone,<br><br>I'm trying to add a new instruction to the LLVM build, for simplicity testing I'm just modifying the add instruction; creating a new one called modAdd which adds 1 to it's LHS value. Basically it's an integer increment instruction.<br><br>Now i followed this : <a href="http://llvm.org/docs/ExtendingLLVM.html">http://llvm.org/docs/ExtendingLLVM.html</a> for adding a new instruction but i can see that i'll need to change Execution.cpp and add some lines such as <a href="http://llvm.org/docs/doxygen/html/Execution_8cpp_source.html#l02026">http://llvm.org/docs/doxygen/html/Execution_8cpp_source.html#l02026</a> for doing a +1.<br><br>How can i do this, how to modify the interpreter/execution.cpp for LLVM to understand my IR instruction?<br><br>Thanks,<br>Best Regards,<br>Ammar :)</div>