[PATCH] D23089: llc: Add -start-before/-stop-before options

Hal Finkel via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 25 13:29:41 PDT 2016


hfinkel added a subscriber: hfinkel.

================
Comment at: include/llvm/CodeGen/TargetPassConfig.h:151
@@ +150,3 @@
+           "Start after and start before passes are given");
+    assert(!(StopBefore && StopAfter) &&
+           "Stop after and stop before passed are given");
----------------
These asserts should be report_fatal_error; the user might trigger them with bad command-line options (and I assume we still want them in release builds).


Repository:
  rL LLVM

https://reviews.llvm.org/D23089





More information about the llvm-commits mailing list