Daniel Dunbar | 46a2716 | 2010-11-13 00:28:01 +0000 | [diff] [blame] | 1 | ; RUN: lli -force-interpreter=true %s |
Jay Foad | 46a49da | 2010-01-15 11:29:26 +0000 | [diff] [blame] | 2 | |
3 | define i32 @main() { | ||||
4 | %a = add i32 0, undef | ||||
Dan Gohman | a9445e1 | 2010-03-02 01:11:08 +0000 | [diff] [blame] | 5 | %b = fadd float 0.0, undef |
6 | %c = fadd double 0.0, undef | ||||
Jay Foad | 46a49da | 2010-01-15 11:29:26 +0000 | [diff] [blame] | 7 | ret i32 0 |
8 | } |