How does the LLVM InstVisitor traverse IR? -


i have working instvisitor, answer prior question. llvm make these instvisitors traverse ir using dfs or bfs?

dfs. check source here (relevant lines 88 108): http://llvm.org/docs/doxygen/html/instvisitor_8h_source.html#l00088


Comments