[PATCH] D73411: [InstCombine] Process newly inserted instructions in the correct order

Nikita Popov via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 30 00:53:55 PST 2020


nikic marked an inline comment as done.
nikic added inline comments.


================
Comment at: llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h:59
 
+  void AddDeferred(Instruction *I) {
+    if (Deferred.insert(I))
----------------
spatel wrote:
> Could take this opportunity to correct all of the ill-formatted 'FunctionNames' to 'functionNames'.
I was planning to do a mass rename of the various Add methods, I'll roll the style change into that one.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D73411





More information about the llvm-commits mailing list