mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-31 07:52:55 +01:00
563ba88392
llvm-svn: 8558
8 lines
212 B
LLVM
8 lines
212 B
LLVM
; test that malloc's with a constant argument are promoted to array allocations
|
|
; RUN: llvm-as < %s | opt -instcombine -die | llvm-dis | grep getelementptr
|
|
|
|
int* %test() {
|
|
%X = malloc int, uint 4
|
|
ret int* %X
|
|
}
|