*.S: Use `.text' consistently to name the text section.
authorMark Wooding <mdw@distorted.org.uk>
Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Fri, 24 Jun 2016 00:17:14 +0000 (01:17 +0100)
Notably, `.text' allows a subsection number, while `.section' has
BFD-target-specific syntax.

symm/chacha-arm-neon.S
symm/chacha-x86ish-sse2.S
symm/rijndael-x86ish-aesni.S
symm/salsa20-arm-neon.S
symm/salsa20-x86ish-sse2.S

index 5fb0073..d69e2e4 100644 (file)
@@ -35,7 +35,7 @@
 
        .arch   armv7-a
        .fpu    neon
-       .section .text
+       .text
 
 FUNC(chacha_core_arm_neon)
 
index 8688996..641ad65 100644 (file)
@@ -42,7 +42,7 @@
 /// Main code.
 
        .arch pentium4
-       .section .text
+       .text
 
 FUNC(chacha_core_x86ish_sse2)
 
index 91fcc35..0b295e5 100644 (file)
@@ -48,7 +48,7 @@
 /// Main code.
 
        .arch   .aes
-       .section .text
+       .text
 
 /// The AESNI instructions implement a little-endian version of AES, but
 /// Catacomb's internal interface presents as big-endian so as to work better
index cea942d..a520e30 100644 (file)
@@ -35,7 +35,7 @@
 
        .arch   armv7-a
        .fpu    neon
-       .section .text
+       .text
 
 FUNC(salsa20_core_arm_neon)
 
index d74836b..47401b7 100644 (file)
@@ -42,7 +42,7 @@
 /// Main code.
 
        .arch pentium4
-       .section .text
+       .text
 
 FUNC(salsa20_core_x86ish_sse2)