Displaying 1 result from an estimated 1 matches for "blockc".
Did you mean:
block
2005 Apr 20
4
[LLVMdev] "Refactoring" Basic Blocks into a new function
...s (begin() and end()). In order to locate these calls, I
am currently iterating over the basic blocks in a function using the
iterator. Is it possible that I could get the blocks "out of order"
with respect to the control flow? For example, if I have this code:
blockA
if ( blockB ) {
blockC
} else {
blockD
}
blockE
I expect to get the blocks in alphabetical order. I can see that it is
possible that LLVM could give them to me in an arbitrary order. If so,
it will complicate how I need to locate the basic blocks that compose
"code B" in my example above.
2. I am going t...