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:
-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