[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / Hexagon / stack-align1.ll
blobb4bd125c687f01cad61b83765ba0dc597a23ac2d
1 ; RUN: llc -O0 -march=hexagon < %s | FileCheck %s
2 ; CHECK: and(r29,#-32)
3 ; CHECK-DAG: add(r29,#0)
4 ; CHECK-DAG: add(r29,#28)
6 target triple = "hexagon-unknown-unknown"
8 ; Function Attrs: nounwind uwtable
9 define void @foo() #0 {
10 entry:
11   %x = alloca i32, align 4
12   %y = alloca i32, align 32
13   call void @bar(ptr %x, ptr %y)
14   ret void
17 declare void @bar(ptr, ptr) #0
19 attributes #0 = { nounwind }