xref: /aosp_15_r20/external/llvm/test/Assembler/2006-09-28-CrashOnInvalid.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
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