diff --git a/test/Transforms/InstCombine/alloca.ll b/test/Transforms/InstCombine/alloca.ll new file mode 100644 index 00000000000..23a52c328d7 --- /dev/null +++ b/test/Transforms/InstCombine/alloca.ll @@ -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 +}