mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
New testcase
llvm-svn: 17729
This commit is contained in:
parent
ab60855423
commit
c654682042
16
test/Regression/Transforms/IPConstantProp/return-constant.ll
Normal file
16
test/Regression/Transforms/IPConstantProp/return-constant.ll
Normal file
@ -0,0 +1,16 @@
|
||||
; RUN: llvm-as < %s | opt -ipconstprop -instcombine | llvm-dis
|
||||
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
|
||||
}
|
Loading…
Reference in New Issue
Block a user