2012-04-08 13:00:38 +02:00
|
|
|
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
2014-08-19 23:08:27 +02:00
|
|
|
; RUN: verify-uselistorder %s
|
2012-04-08 13:00:38 +02:00
|
|
|
; Rudimentary test of fcmp/icmp on vectors returning vector of bool
|
2008-09-09 03:02:47 +02:00
|
|
|
|
2012-04-08 13:00:38 +02:00
|
|
|
; CHECK: @ffoo
|
|
|
|
; CHECK: fcmp olt <4 x float> %a, %b
|
2008-09-09 03:02:47 +02:00
|
|
|
define <4 x i1> @ffoo(<4 x float> %a, <4 x float> %b) nounwind {
|
|
|
|
entry:
|
2012-04-08 13:00:38 +02:00
|
|
|
%cmp = fcmp olt <4 x float> %a, %b ; <4 x i1> [#uses=1]
|
|
|
|
ret <4 x i1> %cmp
|
2008-09-09 03:02:47 +02:00
|
|
|
}
|
|
|
|
|
2012-04-08 13:00:38 +02:00
|
|
|
; CHECK: @ifoo
|
|
|
|
; CHECK: icmp slt <4 x i32> %a, %b
|
2008-09-09 03:02:47 +02:00
|
|
|
define <4 x i1> @ifoo(<4 x i32> %a, <4 x i32> %b) nounwind {
|
|
|
|
entry:
|
2012-04-08 13:00:38 +02:00
|
|
|
%cmp = icmp slt <4 x i32> %a, %b ; <4 x i1> [#uses=1]
|
|
|
|
ret <4 x i1> %cmp
|
2008-09-09 03:02:47 +02:00
|
|
|
}
|