<div dir="ltr">If there is a variable outside a loop, and if it is used inside a loop. How can I check in the LLVM analysis if the variable is getting modified inside a loop iteration.<br>Ex: int i = 0;<br>for(;;i++){}<br>When there is i++, the load instruction updates existing i. How can I identify if the load instruction is part of a loop.<br></div>