aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/Hexagon/stack-align1.ll
blob: cdff6f965b8ee626794d3275a8f0d74622ecd877 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: llc -O0 -mtriple=hexagon < %s | FileCheck %s
; CHECK: and(r29,#-32)
; CHECK-DAG: add(r29,#0)
; CHECK-DAG: add(r29,#28)

target triple = "hexagon-unknown-unknown"

; Function Attrs: nounwind uwtable
define void @foo() #0 {
entry:
  %x = alloca i32, align 4
  %y = alloca i32, align 32
  call void @bar(ptr %x, ptr %y)
  ret void
}

declare void @bar(ptr, ptr) #0

attributes #0 = { nounwind }