Add more i1 optimizations. add, sub, mul, s/udiv on i1 are now simplified away.
[oota-llvm.git] / test / Transforms / InstCombine / malloc.ll
1 ; test that malloc's with a constant argument are promoted to array allocations
2 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep getelementptr
3
4 define i32* @test() {
5         %X = malloc i32, i32 4
6         ret i32* %X
7 }