blob: 7ff71c86b7db783ff57a36be6652f9171ec0e501 (
plain)
1
2
3
4
5
6
7
8
9
|
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | notcast
target endian = little
target pointersize = 32
int *%test(int *%P) {
%V = cast int* %P to int
%P2 = cast int %V to int*
ret int* %P2
}
|