diff options
author | Michael Brown <mcb30@ipxe.org> | 2024-01-14 11:51:16 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2024-01-14 11:51:16 +0000 |
commit | e66552eeede19a91b1a52468a550b58fd031777b (patch) | |
tree | 5228d854e23696f44f32fcb5c6afdc5c002781b4 /src/arch/x86/prefix/exeprefix.S | |
parent | 08fcb0e8fba4ef1dc770253bfbb330fa0c02e096 (diff) | |
download | ipxe-e66552eeede19a91b1a52468a550b58fd031777b.tar.gz |
[build] Remove unnecessary ".text" directives
The .text directive is entirely redundant when followed by a .section
directive giving an explicit section name and attributes.
Remove these unnecessary directives to simplify the code.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/x86/prefix/exeprefix.S')
-rw-r--r-- | src/arch/x86/prefix/exeprefix.S | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/arch/x86/prefix/exeprefix.S b/src/arch/x86/prefix/exeprefix.S index 5b2605e8d..86333489a 100644 --- a/src/arch/x86/prefix/exeprefix.S +++ b/src/arch/x86/prefix/exeprefix.S @@ -37,7 +37,6 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ) #define PSP_CMDLINE_START 0x81 .section ".note.GNU-stack", "", @progbits - .text .arch i386 .org 0 .code16 |