2010-10-18 18:04:47 +00:00
|
|
|
; RUN: opt < %s -basicaa -gvn -S | grep {ret i8 \[%\]tmp3}
|
2008-07-02 17:20:16 +00:00
|
|
|
; PR2503
|
2008-11-29 21:21:48 +00:00
|
|
|
|
2008-07-02 17:20:16 +00:00
|
|
|
@g_3 = external global i8 ; <i8*> [#uses=2]
|
|
|
|
|
2008-11-29 21:21:48 +00:00
|
|
|
define i8 @func_1() nounwind {
|
2008-07-02 17:20:16 +00:00
|
|
|
entry:
|
2011-05-22 07:02:43 +00:00
|
|
|
%A = alloca i8
|
2008-07-02 17:20:16 +00:00
|
|
|
br i1 false, label %ifelse, label %ifthen
|
|
|
|
|
|
|
|
ifthen: ; preds = %entry
|
|
|
|
br label %ifend
|
|
|
|
|
|
|
|
ifelse: ; preds = %entry
|
|
|
|
%tmp3 = load i8* @g_3 ; <i8> [#uses=0]
|
2011-05-22 07:02:43 +00:00
|
|
|
store i8 %tmp3, i8* %A
|
2008-07-02 17:20:16 +00:00
|
|
|
br label %forcond.thread
|
|
|
|
|
|
|
|
forcond.thread: ; preds = %ifelse
|
|
|
|
br label %afterfor
|
|
|
|
|
|
|
|
forcond: ; preds = %forinc
|
|
|
|
br i1 false, label %afterfor, label %forbody
|
|
|
|
|
|
|
|
forbody: ; preds = %forcond
|
|
|
|
br label %forinc
|
|
|
|
|
|
|
|
forinc: ; preds = %forbody
|
|
|
|
br label %forcond
|
|
|
|
|
|
|
|
afterfor: ; preds = %forcond, %forcond.thread
|
|
|
|
%tmp10 = load i8* @g_3 ; <i8> [#uses=0]
|
2008-11-29 21:21:48 +00:00
|
|
|
ret i8 %tmp10
|
2008-07-02 17:20:16 +00:00
|
|
|
|
|
|
|
ifend: ; preds = %afterfor, %ifthen
|
2008-11-29 21:21:48 +00:00
|
|
|
ret i8 0
|
2008-07-02 17:20:16 +00:00
|
|
|
}
|