mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
f2f6ce65b7
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81537 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|