blob: 3080d08557274e6bbfac41ca552c231c87cdceb1 [file] [log] [blame]
Dan Gohman40503392009-09-08 23:54:48 +00001; RUN: llc < %s -march=x86 | grep "(%esp)" | count 2
Dale Johannesenf51dcef2008-12-16 22:13:49 +00002target 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"
3target triple = "i386-apple-darwin9.5"
4; a - a should be found and removed, leaving refs to only L and P
5define i32 @test(i32 %a, i32 %L, i32 %P) nounwind {
6entry:
7 %0 = sub i32 %a, %L
8 %1 = add i32 %P, %0
9 %2 = sub i32 %1, %a
10 br label %return
11
12return: ; preds = %bb3
13 ret i32 %2
14}