invalid-label.ll 212 B

1234567891011
  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. ; CHECK: unable to create block named 'bb'
  5. define void @test(label %bb) {
  6. bb:
  7. ret void
  8. }