hanchenye-llvm-project/llvm/test/Transforms/ConstProp/2007-11-23-cttz.ll

9 lines
164 B
LLVM

; RUN: opt < %s -constprop -S | grep {ret i13 13}
; PR1816
declare i13 @llvm.cttz.i13(i13)
define i13 @test() {
%X = call i13 @llvm.cttz.i13(i13 0)
ret i13 %X
}