Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
5c94ac933728f491da94f1467d4cb1513f4931fc
/
.
/
test
/
Transforms
/
InstCombine
/
malloc.ll
blob: 6a4601a2ebeeef720eef3cae6209fa1839321e4d [
file
] [
log
] [
blame
]
; test that malloc's with a constant argument are promoted to array allocations
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep getelementptr
define
i32
*
@test
()
{
%X
=
malloc
i32
,
i32
4
ret
i32
*
%X
}