llvm-6502/test/Transforms/IPConstantProp/return-constant.ll

17 lines
286 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | opt -ipconstprop -instcombine | llvm-dis | grep 'ret bool true'
implementation
internal int %foo(bool %C) {
br bool %C, label %T, label %F
T:
ret int 52
F:
ret int 52
}
bool %caller(bool %C) {
%X = call int %foo(bool %C)
%Y = setne int %X, 0
ret bool %Y
}