[PATCH] D75932: Move RDF from Hexagon to Codegen

Zola Bridges via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 10 10:53:15 PDT 2020


zbrid added a comment.

LGTM other than the question about the functionality change.



================
Comment at: llvm/lib/CodeGen/RDFGraph.cpp:756
     LR.insert(RegisterRef(R));
-  if (RegisterId R = TLI.getExceptionSelectorRegister(PF))
-    LR.insert(RegisterRef(R));
+  if (!isFuncletEHPersonality(classifyEHPersonality(PF))) {
+    if (RegisterId R = TLI.getExceptionSelectorRegister(PF))
----------------
Thanks for this patch! Qq, is this some functionality change? Why does the refactor  require this update?


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

https://reviews.llvm.org/D75932





More information about the llvm-commits mailing list