mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
6460b25da9
Convert to new test system. This exposes test/Transforms/ConstProp/calls.ll llvm-svn: 36027
12 lines
236 B
LLVM
12 lines
236 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -constprop | llvm-dis | \
|
|
; RUN: grep -F {ret i32* null} | wc -l | grep 2
|
|
|
|
int* %test1() {
|
|
%X = cast float 0.0 to int*
|
|
ret int* %X
|
|
}
|
|
|
|
int* %test2() {
|
|
ret int* cast (float 0.0 to int*)
|
|
}
|