From bc9ac7ebf31d42ea0965ceded383714207746c27 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 26 May 2016 09:26:09 +0100 Subject: [PATCH] *.S: Use `.text' consistently to name the text section. Organization: Straylight/Edgeware From: Mark Wooding Notably, `.text' allows a subsection number, while `.section' has BFD-target-specific syntax. --- symm/chacha-arm-neon.S | 2 +- symm/chacha-x86ish-sse2.S | 2 +- symm/rijndael-x86ish-aesni.S | 2 +- symm/salsa20-arm-neon.S | 2 +- symm/salsa20-x86ish-sse2.S | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/symm/chacha-arm-neon.S b/symm/chacha-arm-neon.S index 5fb0073d..d69e2e43 100644 --- a/symm/chacha-arm-neon.S +++ b/symm/chacha-arm-neon.S @@ -35,7 +35,7 @@ .arch armv7-a .fpu neon - .section .text + .text FUNC(chacha_core_arm_neon) diff --git a/symm/chacha-x86ish-sse2.S b/symm/chacha-x86ish-sse2.S index 86889968..641ad653 100644 --- a/symm/chacha-x86ish-sse2.S +++ b/symm/chacha-x86ish-sse2.S @@ -42,7 +42,7 @@ /// Main code. .arch pentium4 - .section .text + .text FUNC(chacha_core_x86ish_sse2) diff --git a/symm/rijndael-x86ish-aesni.S b/symm/rijndael-x86ish-aesni.S index 91fcc352..0b295e57 100644 --- a/symm/rijndael-x86ish-aesni.S +++ b/symm/rijndael-x86ish-aesni.S @@ -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 diff --git a/symm/salsa20-arm-neon.S b/symm/salsa20-arm-neon.S index cea942db..a520e301 100644 --- a/symm/salsa20-arm-neon.S +++ b/symm/salsa20-arm-neon.S @@ -35,7 +35,7 @@ .arch armv7-a .fpu neon - .section .text + .text FUNC(salsa20_core_arm_neon) diff --git a/symm/salsa20-x86ish-sse2.S b/symm/salsa20-x86ish-sse2.S index d74836b3..47401b7a 100644 --- a/symm/salsa20-x86ish-sse2.S +++ b/symm/salsa20-x86ish-sse2.S @@ -42,7 +42,7 @@ /// Main code. .arch pentium4 - .section .text + .text FUNC(salsa20_core_x86ish_sse2) -- [mdw]