blob: 544edc0b3c53011c0894f5a169b24e1d09ace696 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | opt -sccp -disable-output
2
3implementation
4
5declare int %foo()
6
7void %caller() {
8 br bool true, label %T, label %F
9F:
10 %X = invoke int %foo() to label %T unwind label %T
11
12T:
13 ret void
14}