svn commit: r304640 - in head/secure/lib/libcrypto: . amd64 arm i386

Jung-uk Kim jkim at FreeBSD.org
Mon Aug 22 21:49:25 UTC 2016


Author: jkim
Date: Mon Aug 22 21:49:17 2016
New Revision: 304640
URL: https://svnweb.freebsd.org/changeset/base/304640

Log:
  Prefer C-style comments in assembly sources.

Modified:
  head/secure/lib/libcrypto/Makefile.asm
  head/secure/lib/libcrypto/amd64/aes-x86_64.S
  head/secure/lib/libcrypto/amd64/aesni-gcm-x86_64.S
  head/secure/lib/libcrypto/amd64/aesni-mb-x86_64.S
  head/secure/lib/libcrypto/amd64/aesni-sha1-x86_64.S
  head/secure/lib/libcrypto/amd64/aesni-sha256-x86_64.S
  head/secure/lib/libcrypto/amd64/aesni-x86_64.S
  head/secure/lib/libcrypto/amd64/bsaes-x86_64.S
  head/secure/lib/libcrypto/amd64/cmll-x86_64.S
  head/secure/lib/libcrypto/amd64/ecp_nistz256-x86_64.S
  head/secure/lib/libcrypto/amd64/ghash-x86_64.S
  head/secure/lib/libcrypto/amd64/md5-x86_64.S
  head/secure/lib/libcrypto/amd64/rc4-md5-x86_64.S
  head/secure/lib/libcrypto/amd64/rc4-x86_64.S
  head/secure/lib/libcrypto/amd64/rsaz-avx2.S
  head/secure/lib/libcrypto/amd64/rsaz-x86_64.S
  head/secure/lib/libcrypto/amd64/sha1-mb-x86_64.S
  head/secure/lib/libcrypto/amd64/sha1-x86_64.S
  head/secure/lib/libcrypto/amd64/sha256-mb-x86_64.S
  head/secure/lib/libcrypto/amd64/sha256-x86_64.S
  head/secure/lib/libcrypto/amd64/sha512-x86_64.S
  head/secure/lib/libcrypto/amd64/vpaes-x86_64.S
  head/secure/lib/libcrypto/amd64/wp-x86_64.S
  head/secure/lib/libcrypto/amd64/x86_64-gf2m.S
  head/secure/lib/libcrypto/amd64/x86_64-mont.S
  head/secure/lib/libcrypto/amd64/x86_64-mont5.S
  head/secure/lib/libcrypto/amd64/x86_64cpuid.S
  head/secure/lib/libcrypto/arm/aes-armv4.S
  head/secure/lib/libcrypto/arm/aesv8-armx.S
  head/secure/lib/libcrypto/arm/armv4-gf2m.S
  head/secure/lib/libcrypto/arm/armv4-mont.S
  head/secure/lib/libcrypto/arm/bsaes-armv7.S
  head/secure/lib/libcrypto/arm/ghash-armv4.S
  head/secure/lib/libcrypto/arm/ghashv8-armx.S
  head/secure/lib/libcrypto/arm/sha1-armv4-large.S
  head/secure/lib/libcrypto/arm/sha256-armv4.S
  head/secure/lib/libcrypto/arm/sha512-armv4.S
  head/secure/lib/libcrypto/i386/aes-586.S
  head/secure/lib/libcrypto/i386/aesni-x86.S
  head/secure/lib/libcrypto/i386/bf-586.S
  head/secure/lib/libcrypto/i386/bf-686.S
  head/secure/lib/libcrypto/i386/bn-586.S
  head/secure/lib/libcrypto/i386/cmll-x86.S
  head/secure/lib/libcrypto/i386/co-586.S
  head/secure/lib/libcrypto/i386/crypt586.S
  head/secure/lib/libcrypto/i386/des-586.S
  head/secure/lib/libcrypto/i386/ghash-x86.S
  head/secure/lib/libcrypto/i386/md5-586.S
  head/secure/lib/libcrypto/i386/rc4-586.S
  head/secure/lib/libcrypto/i386/rc5-586.S
  head/secure/lib/libcrypto/i386/rmd-586.S
  head/secure/lib/libcrypto/i386/sha1-586.S
  head/secure/lib/libcrypto/i386/sha256-586.S
  head/secure/lib/libcrypto/i386/sha512-586.S
  head/secure/lib/libcrypto/i386/vpaes-x86.S
  head/secure/lib/libcrypto/i386/wp-mmx.S
  head/secure/lib/libcrypto/i386/x86-gf2m.S
  head/secure/lib/libcrypto/i386/x86-mont.S
  head/secure/lib/libcrypto/i386/x86cpuid.S

Modified: head/secure/lib/libcrypto/Makefile.asm
==============================================================================
--- head/secure/lib/libcrypto/Makefile.asm	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/Makefile.asm	Mon Aug 22 21:49:17 2016	(r304640)
@@ -64,8 +64,8 @@ CLEANFILES=	${ASM} ${SHA_ASM:S/$/.s/}
 .SUFFIXES:	.pl
 
 .pl.S:
-	( echo '# $$'FreeBSD'$$' ;\
-	echo '# Do not modify. This file is auto-generated from ${.IMPSRC:T}.' ;\
+	( echo '/* $$'FreeBSD'$$ */' ;\
+	echo '/* Do not modify. This file is auto-generated from ${.IMPSRC:T}. */' ;\
 	env CC=cc perl ${.IMPSRC} elf ) > ${.TARGET}
 
 ${SHA_TMP}: ${SHA_SRC}
@@ -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
 
@@ -108,14 +108,14 @@ CLEANFILES=	${ASM} ${SRCS:R:S/$/.s/}
 .SUFFIXES:	.pl
 
 aes-armv4.S:	aes-armv4.pl
-	( echo '# $$'FreeBSD'$$' ;\
-	echo '# Do not modify. This file is auto-generated from ${.ALLSRC:T}.' ;\
+	( echo '/* $$'FreeBSD'$$ */' ;\
+	echo '/* Do not modify. This file is auto-generated from ${.ALLSRC:T}. */' ;\
 	env CC=cc perl ${.ALLSRC} elf ) > ${.TARGET}
 
 .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)
@@ -183,8 +183,8 @@ CLEANFILES=	${ASM}
 .SUFFIXES:	.pl
 
 .pl.S:
-	( echo '# $$'FreeBSD'$$' ;\
-	echo '# Do not modify. This file is auto-generated from ${.IMPSRC:T}.' ;\
+	( echo '/* $$'FreeBSD'$$ */' ;\
+	echo '/* Do not modify. This file is auto-generated from ${.IMPSRC:T}. */' ;\
 	echo '#ifdef PIC' ;\
 	env CC=cc perl ${PERLPATH} ${.IMPSRC} elf ${CFLAGS} -fpic -DPIC ;\
 	echo '#else' ;\

Modified: head/secure/lib/libcrypto/amd64/aes-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/aes-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/aes-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from aes-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from aes-x86_64.pl. */
 .text	
 .type	_x86_64_AES_encrypt, at function
 .align	16

Modified: head/secure/lib/libcrypto/amd64/aesni-gcm-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/aesni-gcm-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/aesni-gcm-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from aesni-gcm-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from aesni-gcm-x86_64.pl. */
 .text	
 
 .type	_aesni_ctr32_ghash_6x, at function

Modified: head/secure/lib/libcrypto/amd64/aesni-mb-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/aesni-mb-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/aesni-mb-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from aesni-mb-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from aesni-mb-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/aesni-sha1-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/aesni-sha1-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/aesni-sha1-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from aesni-sha1-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from aesni-sha1-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/aesni-sha256-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/aesni-sha256-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/aesni-sha256-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from aesni-sha256-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from aesni-sha256-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/aesni-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/aesni-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/aesni-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from aesni-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from aesni-x86_64.pl. */
 .text	
 
 .globl	aesni_encrypt

Modified: head/secure/lib/libcrypto/amd64/bsaes-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/bsaes-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/bsaes-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from bsaes-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from bsaes-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/cmll-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/cmll-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/cmll-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from cmll-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from cmll-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/ecp_nistz256-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/ecp_nistz256-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/ecp_nistz256-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from ecp_nistz256-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from ecp_nistz256-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/ghash-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/ghash-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/ghash-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from ghash-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from ghash-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/md5-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/md5-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/md5-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from md5-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from md5-x86_64.pl. */
 .text	
 .align	16
 

Modified: head/secure/lib/libcrypto/amd64/rc4-md5-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/rc4-md5-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/rc4-md5-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from rc4-md5-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from rc4-md5-x86_64.pl. */
 .text	
 .align	16
 

Modified: head/secure/lib/libcrypto/amd64/rc4-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/rc4-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/rc4-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from rc4-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from rc4-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/rsaz-avx2.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/rsaz-avx2.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/rsaz-avx2.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from rsaz-avx2.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from rsaz-avx2.pl. */
 .text	
 
 .globl	rsaz_1024_sqr_avx2

Modified: head/secure/lib/libcrypto/amd64/rsaz-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/rsaz-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/rsaz-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from rsaz-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from rsaz-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/sha1-mb-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/sha1-mb-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/sha1-mb-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from sha1-mb-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from sha1-mb-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/sha1-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/sha1-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/sha1-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from sha1-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from sha1-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/sha256-mb-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/sha256-mb-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/sha256-mb-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from sha256-mb-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from sha256-mb-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/sha256-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/sha256-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/sha256-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -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	
 
 

Modified: head/secure/lib/libcrypto/amd64/sha512-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/sha512-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/sha512-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -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	
 
 

Modified: head/secure/lib/libcrypto/amd64/vpaes-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/vpaes-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/vpaes-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from vpaes-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from vpaes-x86_64.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/wp-x86_64.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/wp-x86_64.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/wp-x86_64.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from wp-x86_64.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from wp-x86_64.pl. */
 .text	
 
 .globl	whirlpool_block

Modified: head/secure/lib/libcrypto/amd64/x86_64-gf2m.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/x86_64-gf2m.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/x86_64-gf2m.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from x86_64-gf2m.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from x86_64-gf2m.pl. */
 .text	
 
 .type	_mul_1x1, at function

Modified: head/secure/lib/libcrypto/amd64/x86_64-mont.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/x86_64-mont.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/x86_64-mont.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from x86_64-mont.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from x86_64-mont.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/x86_64-mont5.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/x86_64-mont5.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/x86_64-mont5.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from x86_64-mont5.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from x86_64-mont5.pl. */
 .text	
 
 

Modified: head/secure/lib/libcrypto/amd64/x86_64cpuid.S
==============================================================================
--- head/secure/lib/libcrypto/amd64/x86_64cpuid.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/amd64/x86_64cpuid.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from x86_64cpuid.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from x86_64cpuid.pl. */
 
 .hidden	OPENSSL_cpuid_setup
 .section	.init

Modified: head/secure/lib/libcrypto/arm/aes-armv4.S
==============================================================================
--- head/secure/lib/libcrypto/arm/aes-armv4.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/arm/aes-armv4.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from aes-armv4.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from aes-armv4.pl. */
 
 @ ====================================================================
 @ Written by Andy Polyakov <appro at openssl.org> for the OpenSSL

Modified: head/secure/lib/libcrypto/arm/aesv8-armx.S
==============================================================================
--- head/secure/lib/libcrypto/arm/aesv8-armx.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/arm/aesv8-armx.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -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

Modified: head/secure/lib/libcrypto/arm/armv4-gf2m.S
==============================================================================
--- head/secure/lib/libcrypto/arm/armv4-gf2m.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/arm/armv4-gf2m.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -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

Modified: head/secure/lib/libcrypto/arm/armv4-mont.S
==============================================================================
--- head/secure/lib/libcrypto/arm/armv4-mont.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/arm/armv4-mont.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -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

Modified: head/secure/lib/libcrypto/arm/bsaes-armv7.S
==============================================================================
--- head/secure/lib/libcrypto/arm/bsaes-armv7.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/arm/bsaes-armv7.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -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 at openssl.org> for the OpenSSL

Modified: head/secure/lib/libcrypto/arm/ghash-armv4.S
==============================================================================
--- head/secure/lib/libcrypto/arm/ghash-armv4.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/arm/ghash-armv4.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -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

Modified: head/secure/lib/libcrypto/arm/ghashv8-armx.S
==============================================================================
--- head/secure/lib/libcrypto/arm/ghashv8-armx.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/arm/ghashv8-armx.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -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

Modified: head/secure/lib/libcrypto/arm/sha1-armv4-large.S
==============================================================================
--- head/secure/lib/libcrypto/arm/sha1-armv4-large.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/arm/sha1-armv4-large.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -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

Modified: head/secure/lib/libcrypto/arm/sha256-armv4.S
==============================================================================
--- head/secure/lib/libcrypto/arm/sha256-armv4.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/arm/sha256-armv4.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -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 at openssl.org> for the OpenSSL

Modified: head/secure/lib/libcrypto/arm/sha512-armv4.S
==============================================================================
--- head/secure/lib/libcrypto/arm/sha512-armv4.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/arm/sha512-armv4.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -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

Modified: head/secure/lib/libcrypto/i386/aes-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/aes-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/aes-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from aes-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from aes-586.pl. */
 #ifdef PIC
 .file	"aes-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/aesni-x86.S
==============================================================================
--- head/secure/lib/libcrypto/i386/aesni-x86.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/aesni-x86.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from aesni-x86.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from aesni-x86.pl. */
 #ifdef PIC
 .file	"aesni-x86.S"
 .text

Modified: head/secure/lib/libcrypto/i386/bf-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/bf-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/bf-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from bf-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from bf-586.pl. */
 #ifdef PIC
 .file	"bf-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/bf-686.S
==============================================================================
--- head/secure/lib/libcrypto/i386/bf-686.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/bf-686.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from bf-686.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from bf-686.pl. */
 #ifdef PIC
 .file	"bf-686.S"
 .text

Modified: head/secure/lib/libcrypto/i386/bn-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/bn-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/bn-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from bn-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from bn-586.pl. */
 #ifdef PIC
 .file	"bn-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/cmll-x86.S
==============================================================================
--- head/secure/lib/libcrypto/i386/cmll-x86.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/cmll-x86.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from cmll-x86.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from cmll-x86.pl. */
 #ifdef PIC
 .file	"cmll-x86.S"
 .text

Modified: head/secure/lib/libcrypto/i386/co-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/co-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/co-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from co-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from co-586.pl. */
 #ifdef PIC
 .file	"co-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/crypt586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/crypt586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/crypt586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from crypt586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from crypt586.pl. */
 #ifdef PIC
 .file	"crypt586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/des-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/des-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/des-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from des-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from des-586.pl. */
 #ifdef PIC
 .file	"des-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/ghash-x86.S
==============================================================================
--- head/secure/lib/libcrypto/i386/ghash-x86.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/ghash-x86.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from ghash-x86.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from ghash-x86.pl. */
 #ifdef PIC
 .file	"ghash-x86.S"
 .text

Modified: head/secure/lib/libcrypto/i386/md5-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/md5-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/md5-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from md5-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from md5-586.pl. */
 #ifdef PIC
 .file	"md5-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/rc4-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/rc4-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/rc4-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from rc4-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from rc4-586.pl. */
 #ifdef PIC
 .file	"rc4-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/rc5-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/rc5-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/rc5-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from rc5-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from rc5-586.pl. */
 #ifdef PIC
 .file	"rc5-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/rmd-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/rmd-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/rmd-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from rmd-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from rmd-586.pl. */
 #ifdef PIC
 .file	"rmd-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/sha1-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/sha1-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/sha1-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from sha1-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from sha1-586.pl. */
 #ifdef PIC
 .file	"sha1-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/sha256-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/sha256-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/sha256-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from sha256-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from sha256-586.pl. */
 #ifdef PIC
 .file	"sha256-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/sha512-586.S
==============================================================================
--- head/secure/lib/libcrypto/i386/sha512-586.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/sha512-586.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from sha512-586.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from sha512-586.pl. */
 #ifdef PIC
 .file	"sha512-586.S"
 .text

Modified: head/secure/lib/libcrypto/i386/vpaes-x86.S
==============================================================================
--- head/secure/lib/libcrypto/i386/vpaes-x86.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/vpaes-x86.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from vpaes-x86.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from vpaes-x86.pl. */
 #ifdef PIC
 .file	"vpaes-x86.S"
 .text

Modified: head/secure/lib/libcrypto/i386/wp-mmx.S
==============================================================================
--- head/secure/lib/libcrypto/i386/wp-mmx.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/wp-mmx.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from wp-mmx.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from wp-mmx.pl. */
 #ifdef PIC
 .file	"wp-mmx.S"
 .text

Modified: head/secure/lib/libcrypto/i386/x86-gf2m.S
==============================================================================
--- head/secure/lib/libcrypto/i386/x86-gf2m.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/x86-gf2m.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from x86-gf2m.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from x86-gf2m.pl. */
 #ifdef PIC
 .file	"x86-gf2m.S"
 .text

Modified: head/secure/lib/libcrypto/i386/x86-mont.S
==============================================================================
--- head/secure/lib/libcrypto/i386/x86-mont.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/x86-mont.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from x86-mont.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from x86-mont.pl. */
 #ifdef PIC
 .file	"x86-mont.S"
 .text

Modified: head/secure/lib/libcrypto/i386/x86cpuid.S
==============================================================================
--- head/secure/lib/libcrypto/i386/x86cpuid.S	Mon Aug 22 21:40:51 2016	(r304639)
+++ head/secure/lib/libcrypto/i386/x86cpuid.S	Mon Aug 22 21:49:17 2016	(r304640)
@@ -1,5 +1,5 @@
-# $FreeBSD$
-# Do not modify. This file is auto-generated from x86cpuid.pl.
+/* $FreeBSD$ */
+/* Do not modify. This file is auto-generated from x86cpuid.pl. */
 #ifdef PIC
 .file	"x86cpuid.S"
 .text


More information about the svn-src-head mailing list