[X86] Update test/CodeGen/X86/avg.ll with the help of update_llc_test_checks.py....
[oota-llvm.git] / test / Verifier / 2007-12-21-InvokeParamAttrs.ll
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 }