2007-08-15 13:36:28 +00:00
|
|
|
; RUN: llvm-as < %s | llc -march=x86-64 | grep movup | count 2
|
2007-07-18 20:23:34 +00:00
|
|
|
|
2008-05-07 22:59:08 +00:00
|
|
|
define <4 x float> @foo(<4 x float>* %p, <4 x float> %x) nounwind {
|
2007-07-18 20:23:34 +00:00
|
|
|
%t = load <4 x float>* %p, align 4
|
2009-06-04 22:49:04 +00:00
|
|
|
%z = fmul <4 x float> %t, %x
|
2007-07-18 20:23:34 +00:00
|
|
|
ret <4 x float> %z
|
|
|
|
}
|
2008-05-07 22:59:08 +00:00
|
|
|
define <2 x double> @bar(<2 x double>* %p, <2 x double> %x) nounwind {
|
2007-07-18 20:23:34 +00:00
|
|
|
%t = load <2 x double>* %p, align 8
|
2009-06-04 22:49:04 +00:00
|
|
|
%z = fmul <2 x double> %t, %x
|
2007-07-18 20:23:34 +00:00
|
|
|
ret <2 x double> %z
|
|
|
|
}
|