diff options
author | Claudiu Zissulescu <claziss@synopsys.com> | 2016-06-28 15:12:16 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-08-11 10:59:54 +0200 |
commit | 1baa8bb8431c8eac319168727b89ce38c8b66fbe (patch) | |
tree | 4dad09a397a9d873b1a8d008e7b9defd697f3a63 /libgloss | |
parent | 7b1080d9aa6ecb858df12c138da51ba56fbf40be (diff) | |
download | newlib-1baa8bb8431c8eac319168727b89ce38c8b66fbe.zip newlib-1baa8bb8431c8eac319168727b89ce38c8b66fbe.tar.gz newlib-1baa8bb8431c8eac319168727b89ce38c8b66fbe.tar.bz2 |
arc: Add align keyword.
libgloss/
2016-06-28 Claudiu Zissulescu <claziss@synopsys.com>
* arc/crt0.S: Add align keyword.
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/arc/crt0.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgloss/arc/crt0.S b/libgloss/arc/crt0.S index 7db07ff..205b126 100644 --- a/libgloss/arc/crt0.S +++ b/libgloss/arc/crt0.S @@ -103,7 +103,7 @@ IVT_ENTRY(IRQ_20) ; 20 0x50 80 .global __start .type __start, @function - + .align 4 #ifdef __ARC601__ ; Startup code for the ARC601 processor __start: @@ -210,7 +210,7 @@ __start: .section .text._exit_halt,"ax",@progbits .global _exit_halt .type _exit_halt, @function - + .align 4 _exit_halt: ; r0 contains exit code flag 1 |