Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c73cc120 authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Catalin Marinas
Browse files

arm64: relax assembly code alignment from 16 byte to 4 byte



Aarch64 instructions must be word aligned.  The current 16 byte
alignment is more than enough.  Relax it into 4 byte alignment.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
parent e580b8bc
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
#ifndef __ASM_LINKAGE_H
#ifndef __ASM_LINKAGE_H
#define __ASM_LINKAGE_H
#define __ASM_LINKAGE_H


#define __ALIGN		.align 4
#define __ALIGN		.align 2
#define __ALIGN_STR	".align 4"
#define __ALIGN_STR	".align 2"


#endif
#endif