llvm-6502/test/Verifier/invoke-1.ll
Dan Gohman ecb85ef713 Change &| to |&.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44345 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-27 00:50:57 +00:00

11 lines
224 B
LLVM

; RUN: llvm-upgrade < %s | not llvm-as |& grep {not verify as correct}
; PR1042
int %foo() {
%A = invoke int %foo( )
to label %L unwind label %L ; <int> [#uses=1]
L: ; preds = %0, %0
ret int %A
}