Arthur Heymans has submitted this change. ( https://review.coreboot.org/c/coreboot/+/84009?usp=email )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: libpayload/x86: Fix assembly for clang ......................................................................
libpayload/x86: Fix assembly for clang
Change-Id: I81252dc2f89b3b3da0bb9a2388a041b600920b3f Signed-off-by: Arthur Heymans arthur@aheymans.xyz Reviewed-on: https://review.coreboot.org/c/coreboot/+/84009 Reviewed-by: Nico Huber nico.h@gmx.de Reviewed-by: Raul Rangel rrangel@chromium.org Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M payloads/libpayload/arch/x86/exception_asm.S M payloads/libpayload/arch/x86/exception_asm_64.S 2 files changed, 4 insertions(+), 4 deletions(-)
Approvals: build bot (Jenkins): Verified Raul Rangel: Looks good to me, approved Nico Huber: Looks good to me, but someone else must approve
diff --git a/payloads/libpayload/arch/x86/exception_asm.S b/payloads/libpayload/arch/x86/exception_asm.S index b3395d0..042cf04 100644 --- a/payloads/libpayload/arch/x86/exception_asm.S +++ b/payloads/libpayload/arch/x86/exception_asm.S @@ -71,7 +71,7 @@ .macro user_defined_stubs from, to stub \from .if \to-\from - user_defined_stubs %(from+1),\to + user_defined_stubs %(\from+1),\to .endif .endm
@@ -231,7 +231,7 @@ .macro user_defined_gates from, to interrupt_gate exception_stub_\from .if \to-\from - user_defined_gates %(from+1),\to + user_defined_gates %(\from+1),\to .endif .endm
diff --git a/payloads/libpayload/arch/x86/exception_asm_64.S b/payloads/libpayload/arch/x86/exception_asm_64.S index 6d91b93..0c1c536 100644 --- a/payloads/libpayload/arch/x86/exception_asm_64.S +++ b/payloads/libpayload/arch/x86/exception_asm_64.S @@ -71,7 +71,7 @@ .macro user_defined_stubs from, to stub \from .if \to-\from - user_defined_stubs %(from+1),\to + user_defined_stubs %(\from+1),\to .endif .endm
@@ -277,7 +277,7 @@ .macro user_defined_gates from, to interrupt_gate exception_stub_\from .if \to-\from - user_defined_gates %(from+1),\to + user_defined_gates %(\from+1),\to .endif .endm