mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +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
29 lines
782 B
LLVM
29 lines
782 B
LLVM
; RUN: opt < %s -gvn | llvm-dis
|
|
; Cached results must be added to and verified against the visited sets.
|
|
; PR3217
|
|
|
|
define fastcc void @gen_field_die(i32* %decl) nounwind {
|
|
entry:
|
|
br i1 false, label %bb203, label %bb202
|
|
|
|
bb202: ; preds = %entry
|
|
unreachable
|
|
|
|
bb203: ; preds = %entry
|
|
%tmp = getelementptr i32* %decl, i32 1 ; <i32*> [#uses=1]
|
|
%tmp1 = load i32* %tmp, align 4 ; <i32> [#uses=0]
|
|
br i1 false, label %bb207, label %bb204
|
|
|
|
bb204: ; preds = %bb203
|
|
%tmp2 = getelementptr i32* %decl, i32 1 ; <i32*> [#uses=1]
|
|
br label %bb208
|
|
|
|
bb207: ; preds = %bb203
|
|
br label %bb208
|
|
|
|
bb208: ; preds = %bb207, %bb204
|
|
%iftmp.1374.0.in = phi i32* [ null, %bb207 ], [ %tmp2, %bb204 ] ; <i32*> [#uses=1]
|
|
%iftmp.1374.0 = load i32* %iftmp.1374.0.in ; <i32> [#uses=0]
|
|
unreachable
|
|
}
|