[PATCH] D61437: [AArch64] Static (de)allocation of SVE stack objects.

David Greene via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 3 07:13:06 PDT 2019


greened added inline comments.


================
Comment at: include/llvm/CodeGen/TargetFrameLowering.h:28
 namespace TargetStackID {
-  enum Value {
-    Default = 0,
-    SGPRSpill = 1,
-    NoAlloc = 255
-  };
+enum Value { Default = 0, SGPRSpill = 1, SVEVector = 2, NoAlloc = 255 };
 }
----------------
Why was the formatting changed here?  It's easier for me to read with the newlines.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D61437/new/

https://reviews.llvm.org/D61437





More information about the llvm-commits mailing list