diff options
author | Jeff Law <law@redhat.com> | 1996-08-29 23:39:23 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-08-29 23:39:23 +0000 |
commit | 0ef0eba580c6ef4450878098fdbe71681de42bb4 (patch) | |
tree | 1fbacc3637051ba634c98e9c0725c1fe2d47a500 /sim/v850/Makefile.in | |
parent | 7fa565a6d3edf64e76b48407a769e0aa7f9b6cee (diff) | |
download | gdb-0ef0eba580c6ef4450878098fdbe71681de42bb4.zip gdb-0ef0eba580c6ef4450878098fdbe71681de42bb4.tar.gz gdb-0ef0eba580c6ef4450878098fdbe71681de42bb4.tar.bz2 |
* interp.c (hash): Update to be more accurate.
(lookup_hash): Call hash rather than computing the hash
code here.
(do_format_1_2): Handle format 1 and format 2 instructions.
Get operands correctly and call the target function.
(do_format_6): Get operands correctly and call the target
function.
(do_formats_9_10): Rough cut so shift ops will work.
(sim_resume): Tweak to deal with format 1 and format 2
handling in a single funtion. Don't update the PC
for format 3 insns. Fix typos.
* simops.c: Slightly reorganize. Add condition code handling
to "add", "addi", "and", "andi", "or", "ori", "xor", "xori"
and "not" instructions.
* v850_sim.h (reg_t): Registers are 32bits.
(_state): The V850 has 32 general registers. Add a 32bit
psw and pc register too. Add accessor macros
Fixing lots of stuff. Starting to add condition code support. Basically
check pointing the work to date.
Diffstat (limited to 'sim/v850/Makefile.in')
-rw-r--r-- | sim/v850/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/v850/Makefile.in b/sim/v850/Makefile.in index 0e50939..935e4aa 100644 --- a/sim/v850/Makefile.in +++ b/sim/v850/Makefile.in @@ -56,7 +56,7 @@ INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1 AR = @AR@ AR_FLAGS = rc CC = @CC@ -CFLAGS = @CFLAGS@ +CFLAGS = @CFLAGS@ @DEFS@ MAKEINFO = makeinfo RANLIB = @RANLIB@ CC_FOR_BUILD = @CC_FOR_BUILD@ |