mirror of
https://github.com/opnsense/src.git
synced 2026-04-01 15:35:10 -04:00
The EABI unwind info requires a .fnend for every .fnstart, and newer binutils will complain about seeing two .fnstart in a row. This change allows newer tools to compile our code. Reported by: bapt Reviewed by: imp
10 lines
158 B
ArmAsm
10 lines
158 B
ArmAsm
#include <machine/asm.h>
|
|
|
|
.ident "$FreeBSD$"
|
|
ENTRY(_ctx_start)
|
|
mov lr, pc
|
|
mov pc, r4
|
|
mov r0, r5
|
|
bl _C_LABEL(ctx_done)
|
|
bl _C_LABEL(abort)
|
|
END(_ctx_start)
|