aemerson added inline comments.

================
Comment at: lib/Basic/Targets.cpp:6245
   enum FPUModeEnum {
-    FPUMode,
-    NeonMode
+    NeonMode = (1 << 0),
+    SveMode = (1 << 1)
----------------
rengolin wrote:
> Is there any AArch64 arch without SIMD?
> 
> Anyway, that seems deliberate, @t.p.northover any idea?
SIMD support can be disabled with +nosimd. This change doesn't affect how that 
works.


Repository:
  rL LLVM

https://reviews.llvm.org/D35118



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to