Break up huge line so that this file is almost readable.
[oota-llvm.git] / test / Assembler / 2006-09-28-CrashOnInvalid.ll
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.
3 ; RUN: llvm-as < %s 2>&1 >/dev/null | grep 'FP constant invalid for type'
4
5 define void @test() {
6   add i32 1, 2.0
7   ret void
8 }