mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +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
18 lines
521 B
LLVM
18 lines
521 B
LLVM
; PR1600
|
|
; RUN: opt < %s -basicaa -gvn -instcombine -S | \
|
|
; RUN: grep {ret i32 0}
|
|
; END.
|
|
|
|
declare i16 @llvm.cttz.i16(i16)
|
|
|
|
define i32 @test(i32* %P, i16* %Q) {
|
|
%A = load i16* %Q ; <i16> [#uses=1]
|
|
%x = load i32* %P ; <i32> [#uses=1]
|
|
%B = call i16 @llvm.cttz.i16( i16 %A ) ; <i16> [#uses=1]
|
|
%y = load i32* %P ; <i32> [#uses=1]
|
|
store i16 %B, i16* %Q
|
|
%z = sub i32 %x, %y ; <i32> [#uses=1]
|
|
ret i32 %z
|
|
}
|
|
|