You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
510 B
15 lines
510 B
4 months ago
|
; RUN: llc -O0 --frame-pointer=none -mtriple=arm-- -o - %S/../Inputs/stack-guard-reassign.ll | FileCheck %s
|
||
|
|
||
|
; Verify that the offset assigned to the stack protector is at the top of the
|
||
|
; frame, covering the locals.
|
||
|
; CHECK-LABEL: fn:
|
||
|
; CHECK: sub sp, sp, #24
|
||
|
; CHECK-NEXT: sub sp, sp, #65536
|
||
|
; CHECK-NEXT: ldr r1, .LCPI0_0
|
||
|
; CHECK-NEXT: str r1, [sp, #8]
|
||
|
; CHECK-NEXT: ldr r1, [r1]
|
||
|
; CHECK-NEXT: add lr, sp, #65536
|
||
|
; CHECK-NEXT: str r1, [lr, #20]
|
||
|
; CHECK: .LCPI0_0:
|
||
|
; CHECK-NEXT: .long __stack_chk_guard
|