2009-09-09 07:54:48 +08:00
|
|
|
; RUN: llc < %s -march=x86-64 | grep movap | count 2
|
2007-07-19 04:23:34 +08:00
|
|
|
|
2008-05-08 06:59:08 +08:00
|
|
|
define <4 x float> @foo(<4 x float>* %p) nounwind {
|
2015-02-28 05:17:42 +08:00
|
|
|
%t = load <4 x float>, <4 x float>* %p
|
2007-07-19 04:23:34 +08:00
|
|
|
ret <4 x float> %t
|
|
|
|
}
|
2008-05-08 06:59:08 +08:00
|
|
|
define <2 x double> @bar(<2 x double>* %p) nounwind {
|
2015-02-28 05:17:42 +08:00
|
|
|
%t = load <2 x double>, <2 x double>* %p
|
2007-07-19 04:23:34 +08:00
|
|
|
ret <2 x double> %t
|
|
|
|
}
|