]> git.pld-linux.org Git - packages/binutils-gasp.git/blob - binutils-relax_type.patch
- last version of binutils before gasp removal (2.13.2.1a)
[packages/binutils-gasp.git] / binutils-relax_type.patch
1 --- binutils-2.13.2.1/gas/tc.h.orig     2001-11-15 22:28:53.000000000 +0100
2 +++ binutils-2.13.2.1/gas/tc.h  2022-09-27 19:58:57.525827655 +0200
3 @@ -27,22 +27,6 @@ extern const pseudo_typeS md_pseudo_tabl
4  /* JF moved this here from as.h under the theory that nobody except MACHINE.c
5     and write.c care about it anyway.  */
6  
7 -struct relax_type
8 -{
9 -  /* Forward reach. Signed number. > 0.  */
10 -  long rlx_forward;
11 -  /* Backward reach. Signed number. < 0.  */
12 -  long rlx_backward;
13 -
14 -  /* Bytes length of this address.  */
15 -  unsigned char rlx_length;
16 -
17 -  /* Next longer relax-state.  0 means there is no 'next' relax-state.  */
18 -  relax_substateT rlx_more;
19 -};
20 -
21 -typedef struct relax_type relax_typeS;
22 -
23  extern const int md_reloc_size;        /* Size of a relocation record */
24  
25  char *md_atof PARAMS ((int what_statement_type, char *literalP, int *sizeP));
26 --- binutils-2.13.2.1/gas/as.h.orig     2002-07-14 03:14:19.000000000 +0200
27 +++ binutils-2.13.2.1/gas/as.h  2022-09-27 19:58:58.979153115 +0200
28 @@ -397,6 +397,22 @@ typedef unsigned int relax_substateT;
29  /* Enough bits for address, but still an integer type.
30     Could be a problem, cross-assembling for 64-bit machines.  */
31  typedef addressT relax_addressT;
32 +
33 +struct relax_type
34 +{
35 +  /* Forward reach. Signed number. > 0.  */
36 +  long rlx_forward;
37 +  /* Backward reach. Signed number. < 0.  */
38 +  long rlx_backward;
39 +
40 +  /* Bytes length of this address.  */
41 +  unsigned char rlx_length;
42 +
43 +  /* Next longer relax-state.  0 means there is no 'next' relax-state.  */
44 +  relax_substateT rlx_more;
45 +};
46 +
47 +typedef struct relax_type relax_typeS;
48  \f
49  /* main program "as.c" (command arguments etc) */
50  
This page took 0.068343 seconds and 3 git commands to generate.