[PATCH] D27050: [X86] Make library calls sensitive to regparm module flag (Fixes PR3997).

Reid Kleckner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 17 08:37:55 PDT 2017


rnk accepted this revision.
rnk added a comment.
This revision is now accepted and ready to land.

lgtm



================
Comment at: lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp:7658
     Entry.Ty = StackSlotPtrType;
-    Entry.isSExt = false;
-    Entry.isZExt = false;
-    Entry.isInReg = false;
-    Entry.isSRet = true;
-    Entry.isNest = false;
-    Entry.isByVal = false;
-    Entry.isReturned = false;
-    Entry.isSwiftSelf = false;
-    Entry.isSwiftError = false;
+    Entry.IsSExt = false;
+    Entry.IsZExt = false;
----------------
Please commit the `s/is/Is/` change first as a separate change to reduce the diff size and simplify future source history archaeology.


https://reviews.llvm.org/D27050





More information about the llvm-commits mailing list