Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/librfxcodec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2017-03-13 10:00:00 +0300
committerjsorg71 <jay.sorg@gmail.com>2017-03-17 10:09:53 +0300
commitae09ff5506a77ea34a788e96f8b46632d8759b1f (patch)
tree9ce4283c02a1def50899e11dc11db61f43e657ad
parent1c5022d1ffa547466c75cbcff1b86f2e27435296 (diff)
Write "section" in lowercase for consistency with other keywords
-rw-r--r--src/amd64/cpuid_amd64.asm4
-rw-r--r--src/x86/cpuid_x86.asm4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/amd64/cpuid_amd64.asm b/src/amd64/cpuid_amd64.asm
index e561b2d..e70be8a 100644
--- a/src/amd64/cpuid_amd64.asm
+++ b/src/amd64/cpuid_amd64.asm
@@ -1,8 +1,8 @@
%ifidn __OUTPUT_FORMAT__,elf64
-SECTION .note.GNU-stack noalloc noexec nowrite progbits
+section .note.GNU-stack noalloc noexec nowrite progbits
%endif
-SECTION .text
+section .text
%macro PROC 1
align 16
diff --git a/src/x86/cpuid_x86.asm b/src/x86/cpuid_x86.asm
index fe19a90..25b7340 100644
--- a/src/x86/cpuid_x86.asm
+++ b/src/x86/cpuid_x86.asm
@@ -1,8 +1,8 @@
%ifidn __OUTPUT_FORMAT__,elf
-SECTION .note.GNU-stack noalloc noexec nowrite progbits
+section .note.GNU-stack noalloc noexec nowrite progbits
%endif
-SECTION .text
+section .text
%macro PROC 1
align 16