[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / Hexagon / stack-alloca1.ll
blob3c2296b4038d4e8b7d0567e0f3abd5e9ff6d94d5
1 ; RUN: llc -O0 -march=hexagon < %s | FileCheck %s
2 ; CHECK: sub(r29,r[[REG:[0-9]+]])
3 ; CHECK: r29 = r[[REG]]
5 target triple = "hexagon-unknown-unknown"
7 ; Function Attrs: nounwind uwtable
8 define void @foo(i32 %n) #0 {
9 entry:
10   %x = alloca i32, i32 %n
11   call void @bar(ptr %x)
12   ret void
15 declare void @bar(ptr) #0
17 attributes #0 = { nounwind }