mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
New testcase, the optimizer can delete zero sized allocas
llvm-svn: 12506
This commit is contained in:
parent
eb5ced99d6
commit
ec8d5d563b
14
test/Regression/Transforms/InstCombine/alloca.ll
Normal file
14
test/Regression/Transforms/InstCombine/alloca.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; Zero byte allocas should be deleted.
|
||||
|
||||
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep alloca
|
||||
|
||||
declare void %use(...)
|
||||
void %test() {
|
||||
%X = alloca [0 x int]
|
||||
call void(...)* %use([0 x int] *%X)
|
||||
%Y = alloca int, uint 0
|
||||
call void(...)* %use(int* %Y)
|
||||
%Z = alloca {}
|
||||
call void(...)* %use({}* %Z)
|
||||
ret void
|
||||
}
|
Loading…
Reference in New Issue
Block a user