1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Process execution related definitions for the Hexagon architecture
5 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
11 /* Should probably shoot for an 8-byte aligned stack pointer */
12 #define STACK_MASK (~7)
13 #define arch_align_stack(x) (x & STACK_MASK)
15 #endif /* _ASM_EXEC_H */