xref: /haiku/src/system/libroot/os/arch/arm64/get_stack_frame.S (revision 0fae96c5a349db3761ac2a4ab4a7fbbf23a3b76c)
1/*
2 * Copyright 2019 Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#include <asm_defs.h>
6
7/* void* get_stack_frame(void) */
8FUNCTION(get_stack_frame):
9	mov		x0, fp
10	ret
11FUNCTION_END(get_stack_frame)
12