blob: 0ef33b54eb28e1cf117a5329f04a909e80776a8f [file] [log] [blame]
; RUN: llvm-upgrade < %s | llvm-as | opt -prune-eh | llvm-dis | not grep invoke
implementation
internal int %foo() {
invoke int %foo() to label %Normal except label %Except
Normal:
ret int 12
Except:
ret int 123
}
int %caller() {
invoke int %foo() to label %Normal except label %Except
Normal:
ret int 0
Except:
ret int 1
}