mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
New testcase, the optimizer can delete zero sized allocas
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12506 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
76cddb08cb
commit
f3fbddd333
14
test/Transforms/InstCombine/alloca.ll
Normal file
14
test/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…
x
Reference in New Issue
Block a user