[PATCH] D14792: Have 'optnone' respect -fast-isel=false

Paul Robinson via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 19 17:59:54 PST 2015


probinson added inline comments.

================
Comment at: include/llvm/Target/TargetMachine.h:105
@@ -104,2 +104,3 @@
   unsigned RequireStructuredCFG : 1;
+  unsigned OptnoneUsesFastISel : 1;
 
----------------
echristo wrote:
> No need for this.
This is where LLVMTargetMachine records the state of the -fast-isel command-line option, which SelectionDAGISel needs.  SelectionDAGISel does not have direct access to the EnableFastISelOption flag.

Unless you're now saying 'optnone' must always use FastISel? That wasn't the conclusion in the llvm-dev thread.


http://reviews.llvm.org/D14792





More information about the llvm-commits mailing list