[PATCH] D113440: [bugpoint] Support --safe-run-llc-ia like --run-llc-ia

Jessica Clarke via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 8 16:11:28 PST 2021


jrtc27 created this revision.
jrtc27 added a reviewer: MaskRay.
jrtc27 requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

This is a direct copy of the enum option for --run-llc-ia, and just works as
the implementation is already there, just never wired up to an option.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D113440

Files:
  llvm/tools/bugpoint/ExecutionDriver.cpp


Index: llvm/tools/bugpoint/ExecutionDriver.cpp
===================================================================
--- llvm/tools/bugpoint/ExecutionDriver.cpp
+++ llvm/tools/bugpoint/ExecutionDriver.cpp
@@ -64,6 +64,8 @@
     cl::desc("Specify \"safe\" i.e. known-good backend:"),
     cl::values(clEnumValN(AutoPick, "safe-auto", "Use best guess"),
                clEnumValN(RunLLC, "safe-run-llc", "Compile with LLC"),
+               clEnumValN(RunLLCIA, "safe-run-llc-ia",
+                          "Compile with LLC with integrated assembler"),
                clEnumValN(Custom, "safe-run-custom",
                           "Use -exec-command to define a command to execute "
                           "the bitcode. Useful for cross-compilation.")),


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D113440.385651.patch
Type: text/x-patch
Size: 760 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211109/c0ccdf7a/attachment.bin>


More information about the llvm-commits mailing list