blob: 6e3894ca10075e359d53544713b5f24e6dceaad1 [file] [log] [blame]
Bill Wendlinga0126af2012-04-08 11:00:38 +00001; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00002; PR2317
3target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
4target triple = "i686-apple-darwin9.2.2"
5
Bill Wendlinga0126af2012-04-08 11:00:38 +00006; CHECK: @1 = global <4 x i1> <i1 icmp slt (i32 ptrtoint (i32* @B to i32), i32 1), i1 true, i1 false, i1 true>
7
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00008define <4 x i1> @foo(<4 x float> %a, <4 x float> %b) nounwind {
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00009entry:
Bill Wendlinga0126af2012-04-08 11:00:38 +000010 %cmp = fcmp olt <4 x float> %a, %b ; <4 x i32> [#uses=1]
11 ret <4 x i1> %cmp
Chris Lattnerbbedb0e2008-07-14 05:17:31 +000012}
13
Dan Gohmanaceba312010-01-05 17:55:26 +000014global <4 x i1> icmp slt ( <4 x i32> <i32 1, i32 1, i32 1, i32 1>, <4 x i32> <i32 1, i32 2, i32 1, i32 2> )
Dan Gohmanaceba312010-01-05 17:55:26 +000015@B = external global i32
Dan Gohmanaceba312010-01-05 17:55:26 +000016global <4 x i1> icmp slt ( <4 x i32> <i32 ptrtoint (i32 * @B to i32), i32 1, i32 1, i32 1>, <4 x i32> <i32 1, i32 2, i32 1, i32 2> )