Bill Wendling | c6df988 | 2011-04-14 01:11:51 +0000 | [diff] [blame^] | 1 | ; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck %s |
Evan Cheng | 0ac3fc2 | 2008-08-17 19:22:34 +0000 | [diff] [blame] | 2 | |
| 3 | define i32 @foo(<4 x float> %a, <4 x float> %b) nounwind { |
| 4 | entry: |
Bill Wendling | c6df988 | 2011-04-14 01:11:51 +0000 | [diff] [blame^] | 5 | ; CHECK: movzx |
| 6 | tail call i32 @llvm.x86.sse.ucomige.ss( <4 x float> %a, <4 x float> %b ) nounwind readnone |
| 7 | ret i32 %0 |
Evan Cheng | 0ac3fc2 | 2008-08-17 19:22:34 +0000 | [diff] [blame] | 8 | } |
| 9 | |
| 10 | declare i32 @llvm.x86.sse.ucomige.ss(<4 x float>, <4 x float>) nounwind readnone |