eliminate the "MBBLabel" MCOperand type, and just use a MCSymbol for
[llvm/avr.git] / test / Transforms / Inline / 2007-12-19-InlineNoUnwind.ll
blob08d4dc693a41ebb9e82137cef5664a32ce67a72e
1 ; RUN: opt < %s -inline -S | grep nounwind
2 ; RUN: opt < %s -inline -S | grep unreachable
4 declare i1 @extern()
6 define internal i32 @test() {
7 entry:
8         %n = call i1 @extern( )
9         br i1 %n, label %r, label %u
11         ret i32 0;
13         unwind
16 define i32 @caller() {
17         %X = call i32 @test( ) nounwind
18         ret i32 %X