blob: ced89cf4c2b310642232f6483dae1e509a94f1b4 [file] [log] [blame]
Gabor Greif4e86da72010-03-31 20:37:13 +00001; RUN: opt %s -simplifycfg -disable-output
2; END.
3target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
4target triple = "x86_64-unknown-linux-gnu"
5
6declare void @bar(i32)
7
8define void @foo() {
9entry:
10 invoke void @bar(i32 undef)
11 to label %r unwind label %u
12
13r: ; preds = %entry
14 ret void
15
16u: ; preds = %entry
17 unwind
18}