mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
df2896d609
llvm-svn: 81290
11 lines
304 B
LLVM
11 lines
304 B
LLVM
; RUN: llc < %s -march=x86-64 | grep movup | count 2
|
|
|
|
define void @foo(<4 x float>* %p, <4 x float> %x) nounwind {
|
|
store <4 x float> %x, <4 x float>* %p, align 4
|
|
ret void
|
|
}
|
|
define void @bar(<2 x double>* %p, <2 x double> %x) nounwind {
|
|
store <2 x double> %x, <2 x double>* %p, align 8
|
|
ret void
|
|
}
|