llvm-6502/test/Transforms/IPConstantProp/return-constant.ll
Chris Lattner f2c83db935 Oops, make this test the right thing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17731 91177308-0d34-0410-b5e6-96231b3b80d8
2004-11-14 06:11:41 +00:00

17 lines
290 B
LLVM

; 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 = cast int %X to bool
ret bool %Y
}