blob: 54d043d54f835207a8252cdfeb921f6ef599aec3 [file] [log] [blame]
Jakob Stoklund Olesen7eb589d2010-09-30 20:51:52 +00001; RUN: llc < %s -march=x86 -mtriple=i686-apple-darwin9.4.0 | grep movl | count 4
Evan Cheng9f689482010-03-26 00:07:25 +00002; RUN: llc < %s -march=x86 -mtriple=i686-apple-darwin9.4.0 | FileCheck %s
Dan Gohmanb2438082009-01-09 08:16:12 +00003; PR2659
4
5target 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"
6target triple = "i686-apple-darwin9.4.0"
7
8define i32 @binomial(i32 %n, i32 %k) nounwind {
9entry:
10 %cmp = icmp ugt i32 %k, %n ; <i1> [#uses=1]
11 br i1 %cmp, label %ifthen, label %forcond.preheader
12
13forcond.preheader: ; preds = %entry
14 %cmp44 = icmp eq i32 %k, 0 ; <i1> [#uses=1]
15 br i1 %cmp44, label %afterfor, label %forbody
16
Jakob Stoklund Olesen7eb589d2010-09-30 20:51:52 +000017; CHECK: %forcond.preheader
Evan Cheng9f689482010-03-26 00:07:25 +000018; CHECK: movl $1
19; CHECK-NOT: xorl
Jakob Stoklund Olesen7eb589d2010-09-30 20:51:52 +000020; CHECK-NOT: movl
21; CHECK-NEXT: je
Evan Cheng9f689482010-03-26 00:07:25 +000022
Dan Gohmanb2438082009-01-09 08:16:12 +000023ifthen: ; preds = %entry
24 ret i32 0
25
26forbody: ; preds = %forbody, %forcond.preheader
27 %indvar = phi i32 [ 0, %forcond.preheader ], [ %divisor.02, %forbody ] ; <i32> [#uses=3]
28 %accumulator.01 = phi i32 [ 1, %forcond.preheader ], [ %div, %forbody ] ; <i32> [#uses=1]
29 %divisor.02 = add i32 %indvar, 1 ; <i32> [#uses=2]
30 %n.addr.03 = sub i32 %n, %indvar ; <i32> [#uses=1]
31 %mul = mul i32 %n.addr.03, %accumulator.01 ; <i32> [#uses=1]
32 %div = udiv i32 %mul, %divisor.02 ; <i32> [#uses=2]
33 %inc = add i32 %indvar, 2 ; <i32> [#uses=1]
34 %cmp4 = icmp ugt i32 %inc, %k ; <i1> [#uses=1]
35 br i1 %cmp4, label %afterfor, label %forbody
36
37afterfor: ; preds = %forbody, %forcond.preheader
38 %accumulator.0.lcssa = phi i32 [ 1, %forcond.preheader ], [ %div, %forbody ] ; <i32> [#uses=1]
39 ret i32 %accumulator.0.lcssa
40}