2011-03-16 14:52:38 +01:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
|
|
|
|
; CHECK-NOT: mov
|
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
|
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
|
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
|
|
|
|
}
|