Displaying 1 result from an estimated 1 matches for "addincomingvalue".
2004 Dec 07
1
[LLVMdev] Question adding dummy basic blocks
Hi,
I got a problem when I am trying to add a dummy basic block.
Let say there are two blocks, A and B.
A----->B
I am trying to generate new BB called C which is located between A and B, but not break the edge of AB. The graph is like the following
A---->B
 \       /
   \   /
    C
There is new BB 'C' with edges AC and CB.
It is kind of like what breakcriticaledge pass does.