llvm-project/llvm/test/CodeGen/X86/sse-align-9.ll

11 lines
313 B
LLVM
Raw Normal View History

; RUN: llc < %s -mtriple=x86_64-- | grep movup | count 2
2008-05-08 06:59:08 +08:00
define <4 x float> @foo(<4 x float>* %p) nounwind {
%t = load <4 x float>, <4 x float>* %p, align 4
ret <4 x float> %t
}
2008-05-08 06:59:08 +08:00
define <2 x double> @bar(<2 x double>* %p) nounwind {
%t = load <2 x double>, <2 x double>* %p, align 8
ret <2 x double> %t
}