[PATCH] D35118: [AArch64] Add support for handling the +sve target feature

Renato Golin via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Jul 7 04:46:34 PDT 2017


rengolin added a reviewer: t.p.northover.
rengolin added a subscriber: t.p.northover.
rengolin added inline comments.


================
Comment at: lib/Basic/Targets.cpp:6245
   enum FPUModeEnum {
-    FPUMode,
-    NeonMode
+    NeonMode = (1 << 0),
+    SveMode = (1 << 1)
----------------
Is there any AArch64 arch without SIMD?

Anyway, that seems deliberate, @t.p.northover any idea?


Repository:
  rL LLVM

https://reviews.llvm.org/D35118





More information about the cfe-commits mailing list