[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / ARM / fast-call-frame-restore.ll
blob4496af8075b372be604d2a9ca576d618197f4eee
1 ; RUN: llc -mtriple=armv7-linux-gnueabi %s -o - | FileCheck %s
3 declare void @bar(ptr, i32, i32, i32, i32)
5 define void @foo(i32 %amt) optnone noinline {
6   br label %next
8 next:
9   %mem = alloca i8;, i32 %amt
10   br label %next1
12 next1:
13   call void @bar(ptr %mem, i32 undef, i32 undef, i32 undef, i32 undef)
14 ; CHECK: sub sp, sp, #8
15 ; CHECK: bl bar
16 ; CHECK: add sp, sp, #8
18   ret void