• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 |& grep {floating point constant invalid for type}
4
5define void @test() {
6  add i32 1, 2.0
7  ret void
8}
9