Home | History | Annotate | Download | only in Verifier
      1 ; RUN: not llvm-as < %s >& /dev/null
      2 
      3 declare void @foo(i8*)
      4 
      5 define void @bar() {
      6 	invoke void @foo(i8* signext null)
      7 			to label %r unwind label %r
      8 r:
      9 	ret void
     10 }
     11