aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2016-08-22 21:30:59 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2016-08-22 21:30:59 +0000
commit0f7bb790d36cf3e3cd457728f122a55dae7a681e (patch)
tree6fe04cd56dbab625b6a9918dd504e622a564d531
parenta47632d45bc139545432ec8d898c1d24a8398439 (diff)
downloadsrc-0f7bb790d36cf3e3cd457728f122a55dae7a681e.tar.gz
src-0f7bb790d36cf3e3cd457728f122a55dae7a681e.zip
Fix white spaces in assembly sources.
Notes
Notes: svn path=/head/; revision=304638
-rw-r--r--secure/lib/libcrypto/Makefile.asm8
-rw-r--r--secure/lib/libcrypto/amd64/sha256-x86_64.S4
-rw-r--r--secure/lib/libcrypto/amd64/sha512-x86_64.S4
-rw-r--r--secure/lib/libcrypto/arm/aesv8-armx.S4
-rw-r--r--secure/lib/libcrypto/arm/armv4-gf2m.S4
-rw-r--r--secure/lib/libcrypto/arm/armv4-mont.S4
-rw-r--r--secure/lib/libcrypto/arm/bsaes-armv7.S4
-rw-r--r--secure/lib/libcrypto/arm/ghash-armv4.S4
-rw-r--r--secure/lib/libcrypto/arm/ghashv8-armx.S4
-rw-r--r--secure/lib/libcrypto/arm/sha1-armv4-large.S4
-rw-r--r--secure/lib/libcrypto/arm/sha256-armv4.S4
-rw-r--r--secure/lib/libcrypto/arm/sha512-armv4.S4
12 files changed, 26 insertions, 26 deletions
diff --git a/secure/lib/libcrypto/Makefile.asm b/secure/lib/libcrypto/Makefile.asm
index 2ddd79679a67..6866edce51b5 100644
--- a/secure/lib/libcrypto/Makefile.asm
+++ b/secure/lib/libcrypto/Makefile.asm
@@ -73,8 +73,8 @@ ${SHA_TMP}: ${SHA_SRC}
.for s in ${SHA_ASM}
${s}.S: ${s}.s
- ( echo ' # $$'FreeBSD'$$' ;\
- echo ' # Do not modify. This file is auto-generated from ${SHA_SRC}.' ;\
+ ( echo '# $$'FreeBSD'$$' ;\
+ echo '# Do not modify. This file is auto-generated from ${SHA_SRC}.' ;\
cat ${s}.s ) > ${.TARGET}
.endfor
@@ -114,8 +114,8 @@ aes-armv4.S: aes-armv4.pl
.pl.S:
env CC=cc perl ${.IMPSRC} elf ${.TARGET:R:S/$/.s/}
- ( echo ' # $$'FreeBSD'$$' ;\
- echo ' # Do not modify. This file is auto-generated from ${.IMPSRC:T:R:S/$/.pl/}.' ;\
+ ( echo '# $$'FreeBSD'$$' ;\
+ echo '# Do not modify. This file is auto-generated from ${.IMPSRC:T:R:S/$/.pl/}.' ;\
cat ${.TARGET:R:S/$/.s/}) > ${.TARGET}
.elif defined(ASM_i386)
diff --git a/secure/lib/libcrypto/amd64/sha256-x86_64.S b/secure/lib/libcrypto/amd64/sha256-x86_64.S
index 1eb0b5931030..f217bda5113e 100644
--- a/secure/lib/libcrypto/amd64/sha256-x86_64.S
+++ b/secure/lib/libcrypto/amd64/sha256-x86_64.S
@@ -1,5 +1,5 @@
- # $FreeBSD$
- # Do not modify. This file is auto-generated from sha512-x86_64.pl.
+# $FreeBSD$
+# Do not modify. This file is auto-generated from sha512-x86_64.pl.
.text
diff --git a/secure/lib/libcrypto/amd64/sha512-x86_64.S b/secure/lib/libcrypto/amd64/sha512-x86_64.S
index 5675a89d0e6c..2f9a3ef871fe 100644
--- a/secure/lib/libcrypto/amd64/sha512-x86_64.S
+++ b/secure/lib/libcrypto/amd64/sha512-x86_64.S
@@ -1,5 +1,5 @@
- # $FreeBSD$
- # Do not modify. This file is auto-generated from sha512-x86_64.pl.
+# $FreeBSD$
+# Do not modify. This file is auto-generated from sha512-x86_64.pl.
.text
diff --git a/secure/lib/libcrypto/arm/aesv8-armx.S b/secure/lib/libcrypto/arm/aesv8-armx.S
index ebd9eabc463b..c65360e78100 100644
--- a/secure/lib/libcrypto/arm/aesv8-armx.S
+++ b/secure/lib/libcrypto/arm/aesv8-armx.S
@@ -1,5 +1,5 @@
- # $FreeBSD$
- # Do not modify. This file is auto-generated from aesv8-armx.pl.
+# $FreeBSD$
+# Do not modify. This file is auto-generated from aesv8-armx.pl.
#include "arm_arch.h"
#if __ARM_MAX_ARCH__>=7
diff --git a/secure/lib/libcrypto/arm/armv4-gf2m.S b/secure/lib/libcrypto/arm/armv4-gf2m.S
index 7bbf18000e4c..5c246fcbb456 100644
--- a/secure/lib/libcrypto/arm/armv4-gf2m.S
+++ b/secure/lib/libcrypto/arm/armv4-gf2m.S
@@ -1,5 +1,5 @@
- # $FreeBSD$
- # Do not modify. This file is auto-generated from armv4-gf2m.pl.
+# $FreeBSD$
+# Do not modify. This file is auto-generated from armv4-gf2m.pl.
#include "arm_arch.h"
.text
diff --git a/secure/lib/libcrypto/arm/armv4-mont.S b/secure/lib/libcrypto/arm/armv4-mont.S
index 52ad5672b5dc..7c47c458f1b8 100644
--- a/secure/lib/libcrypto/arm/armv4-mont.S
+++ b/secure/lib/libcrypto/arm/armv4-mont.S
@@ -1,5 +1,5 @@
- # $FreeBSD$
- # Do not modify. This file is auto-generated from armv4-mont.pl.
+# $FreeBSD$
+# Do not modify. This file is auto-generated from armv4-mont.pl.
#include "arm_arch.h"
.text
diff --git a/secure/lib/libcrypto/arm/bsaes-armv7.S b/secure/lib/libcrypto/arm/bsaes-armv7.S
index 23259099bd7a..56af0d8b6bcd 100644
--- a/secure/lib/libcrypto/arm/bsaes-armv7.S
+++ b/secure/lib/libcrypto/arm/bsaes-armv7.S
@@ -1,5 +1,5 @@
- # $FreeBSD$
- # Do not modify. This file is auto-generated from bsaes-armv7.pl.
+# $FreeBSD$
+# Do not modify. This file is auto-generated from bsaes-armv7.pl.
@ ====================================================================
@ Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
diff --git a/secure/lib/libcrypto/arm/ghash-armv4.S b/secure/lib/libcrypto/arm/ghash-armv4.S
index f72bc8750d25..c38ab8d2ffbd 100644
--- a/secure/lib/libcrypto/arm/ghash-armv4.S
+++ b/secure/lib/libcrypto/arm/ghash-armv4.S
@@ -1,5 +1,5 @@
- # $FreeBSD$
- # Do not modify. This file is auto-generated from ghash-armv4.pl.
+# $FreeBSD$
+# Do not modify. This file is auto-generated from ghash-armv4.pl.
#include "arm_arch.h"
.text
diff --git a/secure/lib/libcrypto/arm/ghashv8-armx.S b/secure/lib/libcrypto/arm/ghashv8-armx.S
index e066db6514bc..db093d8159bb 100644
--- a/secure/lib/libcrypto/arm/ghashv8-armx.S
+++ b/secure/lib/libcrypto/arm/ghashv8-armx.S
@@ -1,5 +1,5 @@
- # $FreeBSD$
- # Do not modify. This file is auto-generated from ghashv8-armx.pl.
+# $FreeBSD$
+# Do not modify. This file is auto-generated from ghashv8-armx.pl.
#include "arm_arch.h"
.text
diff --git a/secure/lib/libcrypto/arm/sha1-armv4-large.S b/secure/lib/libcrypto/arm/sha1-armv4-large.S
index d7a4e7719d9a..8487f79af414 100644
--- a/secure/lib/libcrypto/arm/sha1-armv4-large.S
+++ b/secure/lib/libcrypto/arm/sha1-armv4-large.S
@@ -1,5 +1,5 @@
- # $FreeBSD$
- # Do not modify. This file is auto-generated from sha1-armv4-large.pl.
+# $FreeBSD$
+# Do not modify. This file is auto-generated from sha1-armv4-large.pl.
#include "arm_arch.h"
.text
diff --git a/secure/lib/libcrypto/arm/sha256-armv4.S b/secure/lib/libcrypto/arm/sha256-armv4.S
index 92b6c0ff55cc..6a673ff53328 100644
--- a/secure/lib/libcrypto/arm/sha256-armv4.S
+++ b/secure/lib/libcrypto/arm/sha256-armv4.S
@@ -1,5 +1,5 @@
- # $FreeBSD$
- # Do not modify. This file is auto-generated from sha256-armv4.pl.
+# $FreeBSD$
+# Do not modify. This file is auto-generated from sha256-armv4.pl.
@ ====================================================================
@ Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
diff --git a/secure/lib/libcrypto/arm/sha512-armv4.S b/secure/lib/libcrypto/arm/sha512-armv4.S
index ca5ba50f6fb6..e29622ee1b2d 100644
--- a/secure/lib/libcrypto/arm/sha512-armv4.S
+++ b/secure/lib/libcrypto/arm/sha512-armv4.S
@@ -1,5 +1,5 @@
- # $FreeBSD$
- # Do not modify. This file is auto-generated from sha512-armv4.pl.
+# $FreeBSD$
+# Do not modify. This file is auto-generated from sha512-armv4.pl.
#include "arm_arch.h"
#ifdef __ARMEL__
# define LO 0