2017-08-02 08:28:10 +08:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-- | grep movup | 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, align 4
|
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, align 8
|
2007-07-19 04:23:34 +08:00
|
|
|
ret <2 x double> %t
|
|
|
|
}
|