projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a393e5
)
* simops.c: Don't forget to initialize temp for
author
Jeff Law
<law@redhat.com>
Fri, 30 Aug 1996 20:15:51 +0000
(20:15 +0000)
committer
Jeff Law
<law@redhat.com>
Fri, 30 Aug 1996 20:15:51 +0000
(20:15 +0000)
"ld.h" and "ld.w"
sim/v850/ChangeLog
patch
|
blob
|
history
sim/v850/simops.c
patch
|
blob
|
history
diff --git
a/sim/v850/ChangeLog
b/sim/v850/ChangeLog
index 992afe85e170365abe39ad6d49b9430aa5934440..436a83c116c9d728706576464b6989eb3c5f9555 100644
(file)
--- a/
sim/v850/ChangeLog
+++ b/
sim/v850/ChangeLog
@@
-1,5
+1,8
@@
Fri Aug 30 10:33:49 1996 Jeffrey A Law (law@cygnus.com)
+ * simops.c: Don't forget to initialize temp for
+ "ld.h" and "ld.w"
+
* interp.c: Remove various debugging printfs.
* simops.c: Fix satadd, satsub boundary case handling.
diff --git
a/sim/v850/simops.c
b/sim/v850/simops.c
index c6969fe0e31b5f98c6c7bc59889519ffa9e3faa2..77d6949e4aaab8d2917231034d0f4e59e40de5fc 100644
(file)
--- a/
sim/v850/simops.c
+++ b/
sim/v850/simops.c
@@
-112,6
+112,7
@@
OP_720 ()
int result, temp;
op0 = State.regs[OP[0]];
+ temp = OP[2];
temp = (temp << 16) >> 16;
temp &= ~0x1;
op2 = temp;
@@
-128,6
+129,7
@@
OP_10720 ()
int result, temp;
op0 = State.regs[OP[0]];
+ temp = OP[2];
temp = (temp << 16) >> 16;
temp &= ~0x1;
op2 = temp;