blob: 844d674fc9e57cf62c0d4aed4fd285611dc2abbb [file] [log] [blame]
Nadav Rotem354efd82011-09-18 14:57:03 +00001;RUN: llc < %s -march=x86 -mcpu=yonah -promote-elements -mattr=+sse2,-sse41 | FileCheck %s
2
3;CHECK: @max
4;CHECK: cmplepd
5;CHECK: ret
6
7define <2 x double> @max(<2 x double> %x, <2 x double> %y) {
8 %max_is_x = fcmp oge <2 x double> %x, %y
9 %max = select <2 x i1> %max_is_x, <2 x double> %x, <2 x double> %y
10 ret <2 x double> %max
11}
12