[PATCH] D58238: [DebugInfo] MachineSink: Insert undef DBG_VALUEs when sinking instructions, try to forward copies

Adrian Prantl via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 3 09:06:16 PDT 2019


aprantl added inline comments.


================
Comment at: lib/CodeGen/MachineSink.cpp:812
+    // matches the copy destination.
+    else if (PostRA && DbgMO.getReg() != DstMO->getReg())
+      continue;
----------------
nit: else after continue is redundant.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D58238/new/

https://reviews.llvm.org/D58238





More information about the llvm-commits mailing list