浏览代码

arm: fix _init/_fini alignment in crti.o

This is just cbf59dd6 applied to arm.
Alex Rønne Petersen 5 月之前
父节点
当前提交
9929a571b5
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      crt/arm/crti.s

+ 2 - 0
crt/arm/crti.s

@@ -3,11 +3,13 @@
 .section .init
 .global _init
 .type _init,%function
+.align 2
 _init:
 	push {r0,lr}
 
 .section .fini
 .global _fini
 .type _fini,%function
+.align 2
 _fini:
 	push {r0,lr}