Test case for http://llvm.org/PR6028.
[oota-llvm.git] / test / ExecutionEngine / 2010-01-15-UndefValue.ll
1 ; RUN: llvm-as %s -o %t.bc
2 ; RUN: lli -force-interpreter=true %t.bc
3
4 define i32 @main() {
5        %a = add i32 0, undef
6        %b = add float 0.0, undef
7        %c = add double 0.0, undef
8        ret i32 0
9 }