aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/ARM/naked-no-prolog.ll
blob: f6b6cf2993276eae4e289ff93900446c05e34071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llc -mtriple=arm-eabi -mcpu=cortex-a7 -verify-machineinstrs %s -o - | FileCheck %s

%struct.S = type { [65 x i8] }

define void @naked_no_prologue(ptr byval(%struct.S) align 4 %0) naked noinline nounwind optnone {
; CHECK-NOT: stm
; CHECK-NOT: str

entry:
  ret void
  unreachable
}