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