mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
205b641954
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
17 lines
349 B
LLVM
17 lines
349 B
LLVM
; RUN: opt < %s -gvn | llvm-dis
|
|
|
|
@bsLive = external global i32 ; <i32*> [#uses=2]
|
|
|
|
define i32 @bsR(i32 %n) {
|
|
entry:
|
|
br i1 false, label %cond_next, label %bb19
|
|
|
|
cond_next: ; preds = %entry
|
|
store i32 0, i32* @bsLive, align 4
|
|
br label %bb19
|
|
|
|
bb19: ; preds = %cond_next, %entry
|
|
%tmp29 = load i32* @bsLive, align 4 ; <i32> [#uses=0]
|
|
ret i32 0
|
|
}
|