1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-26 22:42:46 +02:00
llvm-mirror/test/Verifier/invoke-1.ll
Dan Gohman 074a744147 Change &| to |&.
llvm-svn: 44345
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
}