Implement bswap
[llvm/msp430.git] / test / Transforms / Inline / 2007-12-19-InlineNoUnwind.ll
blob5f7da15fc1b2edc56b8b803f54b238d29c93bbc2
1 ; RUN: llvm-as %s -o - | opt -inline | llvm-dis | grep nounwind
2 ; RUN: llvm-as %s -o - | opt -inline | llvm-dis | 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