Implement bswap
[llvm/msp430.git] / test / Transforms / Inline / always_inline_dyn_alloca.ll
blob933925e502516d86c47bb690edd231ecb0be5550
1 ; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep callee
2 ; rdar://6655932
4 ; If callee is marked alwaysinline, inline it! Even if callee has dynamic
5 ; alloca and caller does not,
7 define internal void @callee(i32 %N) alwaysinline {
8         %P = alloca i32, i32 %N
9         ret void
12 define void @foo(i32 %N) {
13         call void @callee( i32 %N )
14         ret void