diff options
author | DJ Delorie <dj@redhat.com> | 2006-06-30 21:55:23 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2006-06-30 21:55:23 +0000 |
commit | 6d2903ba95723439c01270af5b11882d6fc5ce77 (patch) | |
tree | 357a1e8b25d5546a475f2c43093756ad7d62bac0 /libgloss/m32c | |
parent | e0d8706d8f36e8cb323efe06431757f4384784cc (diff) | |
download | cygnal-6d2903ba95723439c01270af5b11882d6fc5ce77.tar.gz cygnal-6d2903ba95723439c01270af5b11882d6fc5ce77.tar.bz2 cygnal-6d2903ba95723439c01270af5b11882d6fc5ce77.zip |
* m32c/crt0.S (done_inilist): Fix dwarf2 address sizes.
Diffstat (limited to 'libgloss/m32c')
-rw-r--r-- | libgloss/m32c/crt0.S | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libgloss/m32c/crt0.S b/libgloss/m32c/crt0.S index 9b29ffc9b..f804d8f86 100644 --- a/libgloss/m32c/crt0.S +++ b/libgloss/m32c/crt0.S @@ -34,13 +34,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #define A16 #define A(n,w) n #define W w -#define ADDR .2byte #define ALIGN 1 #else #define A24 #define A(n,w) w #define W l -#define ADDR .4byte #define ALIGN 2 #endif @@ -166,8 +164,8 @@ __m32c_fini: .4byte .LEFDE0-.LASFDE0 ; FDE Length .LASFDE0: .4byte .Lframe0 ; FDE CIE offset - ADDR .LFB2 ; FDE initial location - ADDR .LFE2-.LFB2 ; FDE address range + .4byte .LFB2 ; FDE initial location + .4byte .LFE2-.LFB2 ; FDE address range .byte 0xf ; DW_CFA_def_cfa_expression .uleb128 1 ; length of expression .byte 0x30 ; DW_OP_lit0 |