repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Better OR's for MVE compares
[llvm-core.git]
/
test
/
Assembler
/
invalid-label.ll
blob
33dc63610aae31694713d6ade4f532e45f11402a
1
; RUN: not llvm-as < %s >/dev/null 2> %t
2
; RUN: FileCheck %s < %t
3
; Test the case where an invalid label name is used
4
5
; CHECK: unable to create block named 'bb'
6
7
define void @test(label %bb) {
8
bb:
9
ret void
10
}
11