mirror of
https://github.com/opnsense/src.git
synced 2026-03-14 14:42:40 -04:00
7 lines
195 B
LLVM
7 lines
195 B
LLVM
; test that malloc's with a constant argument are promoted to array allocations
|
|
; RUN: opt < %s -instcombine -S | grep getelementptr
|
|
|
|
define i32* @test() {
|
|
%X = malloc i32, i32 4
|
|
ret i32* %X
|
|
}
|