summaryrefslogtreecommitdiffstats
path: root/lib/csu/ia64
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2001-10-29 10:18:58 +0000
committerpeter <peter@FreeBSD.org>2001-10-29 10:18:58 +0000
commite6400f83f73ccfe6cae6dd0d8a5b3b4d160f5c40 (patch)
treef980a92539cabd49e9ecad0a634101dd65118279 /lib/csu/ia64
parent43153baeeccb84d4cdf773078b6c421f4084baed (diff)
downloadFreeBSD-src-e6400f83f73ccfe6cae6dd0d8a5b3b4d160f5c40.zip
FreeBSD-src-e6400f83f73ccfe6cae6dd0d8a5b3b4d160f5c40.tar.gz
Mostly cosmetic. Use indentation that is reasonably close to other
ia64 *.S files in our tree (eg: locore.s). Put the rest of the args in the .section lines. Reviewed by: dfr
Diffstat (limited to 'lib/csu/ia64')
-rw-r--r--lib/csu/ia64/crti.S24
-rw-r--r--lib/csu/ia64/crtn.S16
2 files changed, 20 insertions, 20 deletions
diff --git a/lib/csu/ia64/crti.S b/lib/csu/ia64/crti.S
index bb93ce3..de09f2b 100644
--- a/lib/csu/ia64/crti.S
+++ b/lib/csu/ia64/crti.S
@@ -32,18 +32,18 @@
*/
.file "crti.S"
- .section .init
- .global _init#
- .proc _init#
+ .section .init,"ax",@progbits
+ .global _init#
+ .proc _init#
_init:
- alloc loc1 = ar.pfs,0,2,0,0
- mov loc0 = b0 /* Save return addr */
- .endp _init#
+ alloc loc1=ar.pfs,0,2,0,0
+ mov loc0=b0 /* Save return addr */
+ .endp _init#
- .section .fini
- .global _fini#
- .proc _fini#
+ .section .fini,"ax",@progbits
+ .global _fini#
+ .proc _fini#
_fini:
- alloc loc1 = ar.pfs, 0, 2, 0, 0
- mov loc0 = b0 /* Save return addr */
- .endp _fini#
+ alloc loc1=ar.pfs,0,2,0,0
+ mov loc0=b0 /* Save return addr */
+ .endp _fini#
diff --git a/lib/csu/ia64/crtn.S b/lib/csu/ia64/crtn.S
index 49b383d..42ec1fe 100644
--- a/lib/csu/ia64/crtn.S
+++ b/lib/csu/ia64/crtn.S
@@ -28,16 +28,16 @@
.file "crtn.S"
- .section .init
+ .section .init,"ax",@progbits
.regstk 0,2,0,0
- mov b0 = loc0 /* Recover return addr */
- mov ar.pfs = loc1
+ mov b0=loc0 /* Recover return addr */
+ mov ar.pfs=loc1
br.ret.sptk.many b0
- .endp _init#
+ .endp _init#
- .section .fini
+ .section .fini,"ax",@progbits
.regstk 0,2,0,0
- mov b0 = loc0 /* Recover return addr */
- mov ar.pfs = loc1
+ mov b0=loc0 /* Recover return addr */
+ mov ar.pfs=loc1
br.ret.sptk.many b0
- .endp _fini#
+ .endp _fini#
OpenPOWER on IntegriCloud