mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-16 11:30:51 +00:00
8a0d41e1a6
in functions which call __builtin_unwind_init() __builtin_unwind_init() is an undocumented gcc intrinsic which has this effect, and is used in libgcc_eh. Goes part of the way toward fixing PR8541. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183984 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
656 B
LLVM
19 lines
656 B
LLVM
; RUN: llc -mtriple=armv7-unknown-linux-gnueabi < %s | FileCheck %s
|
|
; Check that all callee-saved registers are saved and restored in functions
|
|
; that call __builtin_unwind_init(). This is its undocumented behavior in gcc,
|
|
; and it is used in compiling libgcc_eh.
|
|
; See also PR8541
|
|
|
|
declare void @llvm.eh.unwind.init()
|
|
|
|
define void @calls_unwind_init() {
|
|
call void @llvm.eh.unwind.init()
|
|
ret void
|
|
}
|
|
|
|
; CHECK: calls_unwind_init:
|
|
; CHECK: push {r4, r5, r6, r7, r8, r9, r10, r11, lr}
|
|
; CHECK: vpush {d8, d9, d10, d11, d12, d13, d14, d15}
|
|
; CHECK: vpop {d8, d9, d10, d11, d12, d13, d14, d15}
|
|
; CHECK: pop {r4, r5, r6, r7, r8, r9, r10, r11, pc}
|