blob: af1aaa3847552774df73d05f1309e7d55fd6c410 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; 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.
3; RUN: llvm-as < %s >/dev/null |& grep {FP constant invalid for type}
4
5define void @test() {
6 add i32 1, 2.0
7 ret void
8}