blob: 7135d7a224a9f6334c293bf5cc9c9e122a10ec39 [file] [log] [blame]
Dan Gohman28beeea2007-08-15 13:36:28 +00001; RUN: llvm-as < %s | llc -march=x86-64 | grep movap | count 2
Dan Gohman4106f372007-07-18 20:23:34 +00002
3define <4 x float> @foo(<4 x float>* %p)
4{
5 %t = load <4 x float>* %p
6 ret <4 x float> %t
7}
8define <2 x double> @bar(<2 x double>* %p)
9{
10 %t = load <2 x double>* %p
11 ret <2 x double> %t
12}