mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
4cb08f39e9
to run the die pass after it. llvm-svn: 11942
8 lines
207 B
LLVM
8 lines
207 B
LLVM
; test that malloc's with a constant argument are promoted to array allocations
|
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep getelementptr
|
|
|
|
int* %test() {
|
|
%X = malloc int, uint 4
|
|
ret int* %X
|
|
}
|