[PATCH] D136053: [llvm-reduce] Attempt to inline calls

Matt Arsenault via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 17 11:13:36 PDT 2022


arsenm added inline comments.


================
Comment at: llvm/tools/llvm-reduce/deltas/InlineCalls.cpp:20
+static void inlineCalls(Oracle &O, Module &Program) {
+  std::vector<CallBase *> CBs;
+  for (Function &F : Program.functions()) {
----------------
Unused variable


================
Comment at: llvm/tools/llvm-reduce/deltas/InlineCalls.h:1
+//===- InlineCalls.h ------------------------------------------------------===//
+//
----------------
Missing C++ mode comment


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D136053



More information about the llvm-commits mailing list