Hey there,<br>i have a BasicBlock and in this BB i am going over it finding
 out the "uses" of each instruction to find out the dataflow, but how do
 i find out the control flow?<br>or like how do i know that the next load function loads from a previous 
store function - i cant find this out with the uses iterator because of the SSA form.<br><br>1. %In2 = alloca float, align 4 (uses: instr. 12 and 13)<br>..<br>..<br>12. store % float %5, float* In2 (uses: nothing)<br>13. %6 = load float* %In2 (uses : ...)<br>
<br>so instruction nr. 12 should tell me that its being used in 13.<br>Is this possible?<br>Thank you<br>Benjamin<br>