[PATCH] D73739: Exception support for basic block sections

David Blaikie via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 30 13:38:36 PST 2020


dblaikie added a comment.

Pseudo-randomly picking a few other possible reviewers - folks, if you know more authoritative/appropriate reviewers, do please delegate



================
Comment at: llvm/include/llvm/CodeGen/AsmPrinter.h:234-237
+    if (r == ExceptionSymbols.end())
+      return getCurExceptionSym();
+    else
+      return r->second;
----------------
Remove the else here (per: https://llvm.org/docs/CodingStandards.html#don-t-use-else-after-a-return )


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D73739





More information about the llvm-commits mailing list