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

9 lines
178 B
LLVM
Raw Normal View History

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