forked from OSchip/llvm-project
[ARM MVE] Remove accidental 64-bit vst2/vld2 intrinsics.
ACLE defines no such intrinsic as vst2q_u64, and the MVE instruction set has no corresponding instruction. But I had accidentally added them to the fledgling <arm_mve.h> anyway, and if you used them, you'd get a compiler crash. Reviewers: dmgreen Subscribers: kristof.beyls, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D69788
This commit is contained in:
parent
7ea4c6fa51
commit
38f016520f
|
@ -18,7 +18,7 @@
|
|||
|
||||
include "arm_mve_defs.td"
|
||||
|
||||
let params = T.All in
|
||||
let params = T.Usual in
|
||||
foreach n = [ 2, 4 ] in {
|
||||
def "vst"#n#"q": Intrinsic<Void, (args Ptr<Scalar>, MultiVector<n>),
|
||||
(CustomCodegen<"VST24"> n:$NumVectors,
|
||||
|
|
Loading…
Reference in New Issue