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