From: Sir Richard Date: Tue, 23 Nov 2010 16:33:29 +0000 (+0000) Subject: [ARM]: The text section is called ".text", not "text". This caused any ARM assembly... X-Git-Tag: backups/ros-branch-0_3_13@51035~466 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=a93c65e3fe19d32ef931a26a85e4777074d9573a [ARM]: The text section is called ".text", not "text". This caused any ARM assembly to create a new section in the PE and waste 4KB. svn path=/trunk/; revision=49727 --- diff --git a/reactos/ntoskrnl/include/internal/arm/kxarm.h b/reactos/ntoskrnl/include/internal/arm/kxarm.h index 3ac4d762346..cede87c6763 100644 --- a/reactos/ntoskrnl/include/internal/arm/kxarm.h +++ b/reactos/ntoskrnl/include/internal/arm/kxarm.h @@ -1,6 +1,6 @@ .macro TEXTAREA - .section text, "rx" + .section .text, "rx" .align 2 .endm