comparison gcc/config/arm/libunwind.S @ 63:b7f97abdc517 gcc-4.6-20100522

update gcc from gcc-4.5.0 to gcc-4.6
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Mon, 24 May 2010 12:47:05 +0900
parents a06113de4d67
children f6334be47118
comparison
equal deleted inserted replaced
56:3c8a44c06a95 63:b7f97abdc517
24 /* An executable stack is *not* required for these functions. */ 24 /* An executable stack is *not* required for these functions. */
25 #if defined(__ELF__) && defined(__linux__) 25 #if defined(__ELF__) && defined(__linux__)
26 .section .note.GNU-stack,"",%progbits 26 .section .note.GNU-stack,"",%progbits
27 .previous 27 .previous
28 #endif 28 #endif
29
30 #ifdef __ARM_EABI__
31 /* Some attributes that are common to all routines in this file. */
32 /* Tag_ABI_align_needed: This code does not require 8-byte
33 alignment from the caller. */
34 /* .eabi_attribute 24, 0 -- default setting. */
35 /* Tag_ABI_align_preserved: This code preserves 8-byte
36 alignment in any callee. */
37 .eabi_attribute 25, 1
38 #endif /* __ARM_EABI__ */
29 39
30 #ifndef __symbian__ 40 #ifndef __symbian__
31 41
32 #include "lib1funcs.asm" 42 #include "lib1funcs.asm"
33 43