Changeset 609 for branches/GNU/src/binutils/bfd/i386dynix.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/bfd/i386dynix.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* BFD back-end for i386 a.out binaries under dynix. 2 Copyright 1994, 1995 Free Software Foundation, Inc.2 Copyright 1994, 1995, 2001, 2003 Free Software Foundation, Inc. 3 3 4 4 This file is part of BFD, the Binary File Descriptor library. … … 21 21 may not work. */ 22 22 23 #define BYTES_IN_WORD 424 25 23 #define TEXT_START_ADDR 4096 26 24 #define TARGET_PAGE_SIZE 4096 … … 32 30 #define MACHTYPE_OK(mtype) ((mtype) == M_386 || (mtype) == M_UNKNOWN) 33 31 34 #define MY(OP) CAT(i386dynix_,OP) 32 /* Do not "beautify" the CONCAT* macro args. Traditional C will not 33 remove whitespace added here, and thus will fail to concatenate 34 the tokens. */ 35 #define MY(OP) CONCAT2 (i386dynix_,OP) 35 36 #define TARGETNAME "a.out-i386-dynix" 36 #define NAME(x,y) C AT3(i386dynix,_32_,y)37 #define NAME(x,y) CONCAT3 (i386dynix,_32_,y) 37 38 #define ARCH_SIZE 32 38 39 #define NAME_swap_exec_header_in NAME(i386dynix_32_,swap_exec_header_in) … … 66 67 memset ((PTR) execp, 0, sizeof (struct internal_exec)); 67 68 /* Now fill in fields in the execp, from the bytes in the raw data. */ 68 execp->a_info = bfd_h_get_32 (abfd, bytes->e_info);69 execp->a_info = H_GET_32 (abfd, bytes->e_info); 69 70 execp->a_text = GET_WORD (abfd, bytes->e_text); 70 71 execp->a_data = GET_WORD (abfd, bytes->e_data); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.