repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
revert a hunk of r82018 that wasn't supposed to go in yet.
[llvm/avr.git]
/
test
/
Assembler
/
2006-09-28-CrashOnInvalid.ll
blob
a203c6ad034d920b9230141f1ae552b9d92ac4c8
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
5
define void @test() {
6
add i32 1, 2.0
7
ret void
8
}