[PATCH] D35118: [AArch64] Add support for handling the +sve target feature
Amara Emerson via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 7 05:16:40 PDT 2017
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
More information about the cfe-commits
mailing list