getMachineBasicBlockAddress returns a uintptr_t - don't truncate
[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 = fadd float 0.0, undef
7        %c = fadd double 0.0, undef
8        ret i32 0
9 }