[PATCH] D64176: [Bugpoint redesign] Added Pass to Remove Global Variables

David Blaikie via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 15 14:43:51 PDT 2019


dblaikie added inline comments.


================
Comment at: llvm/tools/llvm-reduce/deltas/Delta.h:67
+/// the CReduce, Delta, and Lithium projects.
+inline void runDeltaPass(
+    TestRunner &Test, int Targets,
----------------
This 'inline' keyword probably needs to be removed. I'm surprised if this code links as-is (or compiles - some sort of warning/error like this:

inl.cpp:1:13: warning: inline function 'f' is not defined [-Wundefined-inline]
inline void f();
            ^
inl.cpp:3:3: note: used here
  f();
  ^



Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D64176





More information about the llvm-commits mailing list