Add test for demorgans law with constants
[oota-llvm.git] / test / Transforms / InstCombine / malloc.ll
1 ; test that malloc's with a constant argument are promoted to array allocations
2 ; RUN: as < %s | opt -instcombine -die | dis | grep getelementptr
3
4 int* %test() {
5         %X = malloc int, uint 4
6         ret int* %X
7 }