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

Eric Christopher via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 19 17:03:11 PST 2015


echristo added a comment.

Some inline comments which should change quite a bit of the patch.

Thanks!

-eric


================
Comment at: docs/LangRef.rst:1294
@@ +1293,3 @@
+    this function, with the exception of interprocedural optimization passes.
+    Code generation defaults to the "fast" instruction selector; this can be
+    disabled with ``-fast-isel=false``.
----------------
You can remove everything after the semicolon and replace it with a period.

================
Comment at: include/llvm/Target/TargetMachine.h:105
@@ -104,2 +104,3 @@
   unsigned RequireStructuredCFG : 1;
+  unsigned OptnoneUsesFastISel : 1;
 
----------------
No need for this.


http://reviews.llvm.org/D14792





More information about the llvm-commits mailing list