Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | ; Test for PR902. This program is erroneous, but should not crash llvm-as. |
2 | ; This tests that a simple error is caught and processed correctly. | ||||
Tanya Lattner | 8b07470 | 2007-11-28 04:57:00 +0000 | [diff] [blame] | 3 | ; RUN: not llvm-as < %s >/dev/null |& grep {FP constant invalid for type} |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 4 | |
5 | define void @test() { | ||||
6 | add i32 1, 2.0 | ||||
7 | ret void | ||||
8 | } |