2004-11-06 23:08:26 +00:00
|
|
|
; RUN: llvm-as -f %s -o - | llc
|
|
|
|
|
2002-07-10 21:54:05 +00:00
|
|
|
;;
|
|
|
|
;; Test the sequence:
|
|
|
|
;; cast -> setle 0, %cast -> br %cond
|
|
|
|
;; This sequence should cause the cast value to be forwarded twice,
|
|
|
|
;; i.e., cast is forwarded to the setle and teh setle is forwarded
|
|
|
|
;; to the branch.
|
|
|
|
;; register argument of the "branch-on-register" instruction, i.e.,
|
|
|
|
;;
|
|
|
|
;; This produces the bogus output instruction:
|
|
|
|
;; brlez <NULL VALUE>, .L_SumArray_bb3.
|
|
|
|
;; This came from %bb1 of sumarrray.ll generated from sumarray.c.
|
|
|
|
|
|
|
|
|
2005-01-07 21:15:58 +00:00
|
|
|
int %SumArray(int %Num) {
|
|
|
|
%Num = alloca int
|
2002-07-10 21:54:05 +00:00
|
|
|
br label %Top
|
|
|
|
Top:
|
|
|
|
store int %Num, int * %Num
|
2005-01-07 21:15:58 +00:00
|
|
|
%reg108 = load int * %Num
|
|
|
|
%cast1006 = cast int %reg108 to uint
|
|
|
|
%cond1001 = setle uint %cast1006, 0
|
2002-07-10 21:54:05 +00:00
|
|
|
br bool %cond1001, label %bb6, label %Top
|
|
|
|
|
|
|
|
bb6:
|
|
|
|
ret int 42
|
2005-01-07 21:15:58 +00:00
|
|
|
}
|