diff options
author | Steve Chamberlain <steve@cygnus> | 1991-07-23 23:36:28 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-07-23 23:36:28 +0000 |
commit | bdedf53f2a2c33160069b533710c3432a5598c41 (patch) | |
tree | 5cf9324fa7b84a98aad56d11c09e29a71171c4b4 /include | |
parent | 797ecb38c26065c94a911a8b7aabe750775bdb14 (diff) | |
download | gdb-bdedf53f2a2c33160069b533710c3432a5598c41.zip gdb-bdedf53f2a2c33160069b533710c3432a5598c41.tar.gz gdb-bdedf53f2a2c33160069b533710c3432a5598c41.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'include')
-rwxr-xr-x | include/aout64.h | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/include/aout64.h b/include/aout64.h index ff00c56..7bb8a4f 100755 --- a/include/aout64.h +++ b/include/aout64.h @@ -290,6 +290,11 @@ struct reloc_ext_external { enum reloc_type { + + + + + /* simple relocations */ RELOC_8, /* data[0:7] = addend + sv */ RELOC_16, /* data[0:15] = addend + sv */ @@ -333,13 +338,13 @@ enum reloc_type RELOC_CONST, RELOC_CONSTH, - /* All the new ones I can think of */ + /* All the new ones I can think of *//*v9*/ - RELOC_64, /* data[0:63] = addend + sv */ - RELOC_DISP64, /* data[0:63] = addend - pc + sv */ - RELOC_WDISP21, /* data[0:20] = (addend + sv - pc)>>2 */ - RELOC_DISP21, /* data[0:20] = addend - pc + sv */ - RELOC_DISP14, /* data[0:13] = addend - pc + sv */ + RELOC_64, /* data[0:63] = addend + sv *//*v9*/ + RELOC_DISP64, /* data[0:63] = addend - pc + sv *//*v9*/ + RELOC_WDISP21, /* data[0:20] = (addend + sv - pc)>>2 *//*v9*/ + RELOC_DISP21, /* data[0:20] = addend - pc + sv *//*v9*/ + RELOC_DISP14, /* data[0:13] = addend - pc + sv *//*v9*/ /* Q . What are the other ones, Since this is a clean slate, can we throw away the ones we dont |