[PATCH] D46399: Skip unreachable blocks for CFIInstrInserter verify

Francis Visoiu Mistrih via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 4 14:24:17 PDT 2018


thegameg added inline comments.


================
Comment at: lib/CodeGen/CFIInstrInserter.cpp:298
+  for (auto DFI = df_ext_begin(&MF, Reachable),
+            DFE = df_ext_end(&MF, Reachable);
+       DFI != DFE; ++DFI) {
----------------
How about range for on depth_first(&MF)?


Repository:
  rL LLVM

https://reviews.llvm.org/D46399





More information about the llvm-commits mailing list