llvm-6502/test/Transforms/GVN/2008-02-13-NewPHI.ll
Dan Gohman f2f6ce65b7 Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
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
2009-09-11 18:01:28 +00:00

23 lines
592 B
LLVM

; RUN: opt < %s -anders-aa -gvn
; PR2032
define i32 @sscal(i32 %n, double %sa1, float* %sx, i32 %incx) {
entry:
%sx_addr = alloca float* ; <float**> [#uses=3]
store float* %sx, float** %sx_addr, align 4
br label %bb33
bb: ; preds = %bb33
%tmp27 = load float** %sx_addr, align 4 ; <float*> [#uses=1]
store float 0.000000e+00, float* %tmp27, align 4
store float* null, float** %sx_addr, align 4
br label %bb33
bb33: ; preds = %bb, %entry
br i1 false, label %bb, label %return
return: ; preds = %bb33
%retval59 = load i32* null, align 4 ; <i32> [#uses=1]
ret i32 %retval59
}