xref: /llvm-project/llvm/test/Assembler/2006-09-28-CrashOnInvalid.ll (revision 0a4a26136597a1fe4332732ccdf7e2916dc63d51)
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: not llvm-as < %s >/dev/null 2> %t
4; RUN: grep "floating point constant invalid for type" %t
5
6define void @test() {
7  add i32 1, 2.0
8  ret void
9}
10