diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-08-06 18:46:26 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-08-06 18:46:26 +0000 |
commit | e3ec5b6d76108a12c1d692105b05f4f998023e95 (patch) | |
tree | 8b1adac054c0a3439d011bb5a26fe1b08c43e54c /llvm/test/CodeGen/ARM/vst1.ll | |
parent | 2d8d6559229a927653a8c3ba32180d731e298dce (diff) | |
download | bcm5719-llvm-e3ec5b6d76108a12c1d692105b05f4f998023e95.tar.gz bcm5719-llvm-e3ec5b6d76108a12c1d692105b05f4f998023e95.zip |
Fix incorrect intrinsic declarations.
llvm-svn: 78329
Diffstat (limited to 'llvm/test/CodeGen/ARM/vst1.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/vst1.ll | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/test/CodeGen/ARM/vst1.ll b/llvm/test/CodeGen/ARM/vst1.ll index 6a82b444153..d84f75882f3 100644 --- a/llvm/test/CodeGen/ARM/vst1.ll +++ b/llvm/test/CodeGen/ARM/vst1.ll @@ -80,14 +80,14 @@ define void @vst1Qi64(i64* %A, <2 x i64>* %B) nounwind { ret void } -declare void @llvm.arm.neon.vst1i.v8i8(i8*, <8 x i8>) nounwind readnone -declare void @llvm.arm.neon.vst1i.v4i16(i16*, <4 x i16>) nounwind readnone -declare void @llvm.arm.neon.vst1i.v2i32(i32*, <2 x i32>) nounwind readnone -declare void @llvm.arm.neon.vst1f.v2f32(float*, <2 x float>) nounwind readnone -declare void @llvm.arm.neon.vst1i.v1i64(i64*, <1 x i64>) nounwind readnone +declare void @llvm.arm.neon.vst1i.v8i8(i8*, <8 x i8>) nounwind +declare void @llvm.arm.neon.vst1i.v4i16(i8*, <4 x i16>) nounwind +declare void @llvm.arm.neon.vst1i.v2i32(i8*, <2 x i32>) nounwind +declare void @llvm.arm.neon.vst1f.v2f32(i8*, <2 x float>) nounwind +declare void @llvm.arm.neon.vst1i.v1i64(i8*, <1 x i64>) nounwind -declare void @llvm.arm.neon.vst1i.v16i8(i8*, <16 x i8>) nounwind readnone -declare void @llvm.arm.neon.vst1i.v8i16(i16*, <8 x i16>) nounwind readnone -declare void @llvm.arm.neon.vst1i.v4i32(i32*, <4 x i32>) nounwind readnone -declare void @llvm.arm.neon.vst1f.v4f32(float*, <4 x float>) nounwind readnone -declare void @llvm.arm.neon.vst1i.v2i64(i64*, <2 x i64>) nounwind readnone +declare void @llvm.arm.neon.vst1i.v16i8(i8*, <16 x i8>) nounwind +declare void @llvm.arm.neon.vst1i.v8i16(i8*, <8 x i16>) nounwind +declare void @llvm.arm.neon.vst1i.v4i32(i8*, <4 x i32>) nounwind +declare void @llvm.arm.neon.vst1f.v4f32(i8*, <4 x float>) nounwind +declare void @llvm.arm.neon.vst1i.v2i64(i8*, <2 x i64>) nounwind |