blob: 5ebf2fb94ccdddeb29711a2b002a2934bfb296a7 [file] [log] [blame]
Evan Chengd831cda2009-12-08 23:06:22 +00001; RUN: llc < %s -march=arm -mattr=+neon | FileCheck %s
2
3%struct.int32x4_t = type { <4 x i32> }
4
5define arm_apcscc void @t() nounwind {
6entry:
7; CHECK: vmov.I64 q15, #0
8; CHECK: vmov.32 d30[0], r0
9; CHECK: vmov q0, q15
10 %tmp = alloca %struct.int32x4_t, align 16
11 call void asm sideeffect "vmov.I64 q15, #0\0Avmov.32 d30[0], $1\0Avmov ${0:q}, q15\0A", "=*w,r,~{d31},~{d30}"(%struct.int32x4_t* %tmp, i32 8192) nounwind
12 ret void
13}