diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-08-25 23:14:25 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-08-25 23:14:25 +0000 |
commit | 247fccdeb54a09a14287b2e829511803ad9d7cc1 (patch) | |
tree | c992df7132ca0c315cbcfd5ad81bbc4f16675936 /sim/mips/gencode.c | |
parent | 04f295b64859a6c6b01739fc4dd7fddce42db8d9 (diff) | |
download | gdb-247fccdeb54a09a14287b2e829511803ad9d7cc1.zip gdb-247fccdeb54a09a14287b2e829511803ad9d7cc1.tar.gz gdb-247fccdeb54a09a14287b2e829511803ad9d7cc1.tar.bz2 |
Add ABFD argument to sim_open call. Pass through to sim_config so
that image properties such as endianness can be checked.
More strongly document the expected behavour of each of the sim_*
interfaces.
Add default endian argument to simulator config macro
SIM_AC_OPTION_ENDIAN. Use in sim_config.
Diffstat (limited to 'sim/mips/gencode.c')
-rw-r--r-- | sim/mips/gencode.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sim/mips/gencode.c b/sim/mips/gencode.c index 5e4563d..6ef01bf 100644 --- a/sim/mips/gencode.c +++ b/sim/mips/gencode.c @@ -3927,9 +3927,6 @@ build_instruction (doisa, features, mips16, insn) printf(" signed64 t = ((unsigned64)HI_UW(0) << 32) | (unsigned64)LO_UW(0);\n"); printf(" signed64 u = ((unsigned64)HI_UW(2) << 32) | (unsigned64)LO_UW(2);\n"); printf(" signed64 x000000007FFFFFFF = LSMASK64 (31);\n"); - printf(" signed64 xFFFFFFFF80000000 = MSMASK64 (33);\n"); - printf(" signed64 x7FFFFFFFFFFFFFFF = LSMASK64 (63);\n"); - printf(" signed64 x8000000000000000 = MSMASK64 (1);\n"); printf(" signed64 x0000000080000000 = x000000007FFFFFFF + 1;\n"); printf(" signed64 minus0000000080000000 = -x0000000080000000;\n"); printf(" if ( t > x000000007FFFFFFF )\n"); |