diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-04-24 09:54:50 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-04-24 09:54:50 +0000 |
commit | 1c5d25f841e21cd9e8c65bbae09620c10696a33a (patch) | |
tree | 73d10a625f9d752c7bdcc013cdfc9e8bbdc24c5c /sim/tic80 | |
parent | 21566f9fbe02764d83fbb6bd55a18aa8de20cd7c (diff) | |
download | gdb-1c5d25f841e21cd9e8c65bbae09620c10696a33a.zip gdb-1c5d25f841e21cd9e8c65bbae09620c10696a33a.tar.gz gdb-1c5d25f841e21cd9e8c65bbae09620c10696a33a.tar.bz2 |
* ic (rBase, rLink): Make the type a pointer.
Diffstat (limited to 'sim/tic80')
-rw-r--r-- | sim/tic80/ChangeLog | 4 | ||||
-rw-r--r-- | sim/tic80/ic | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sim/tic80/ChangeLog b/sim/tic80/ChangeLog index 1033fe0..87ce984 100644 --- a/sim/tic80/ChangeLog +++ b/sim/tic80/ChangeLog @@ -1,3 +1,7 @@ +Fri Apr 24 19:43:30 1998 Andrew Cagney <cagney@b1.cygnus.com> + + * ic (rBase, rLink): Make the type a pointer. + Sat Apr 4 20:36:25 1998 Andrew Cagney <cagney@b1.cygnus.com> * configure: Regenerated to track ../common/aclocal.m4 changes. diff --git a/sim/tic80/ic b/sim/tic80/ic index 17067fb..042a0d9 100644 --- a/sim/tic80/ic +++ b/sim/tic80/ic @@ -19,11 +19,11 @@ compute:IndOff:rIndOff:signed_word:(GPR (IndOff) + 0) # compute:Base:Base: compute:Base:vBase:signed_word:(GPR (Base) + 0) -compute:Base:rBase:signed_word:(&GPR (Base)) +compute:Base:rBase:signed_word*:(&GPR (Base)) #compute:Base:vBase:signed_word:(Base == 0 ? 0 : (CPU)->reg[Base]) # compute:Link:Link: -compute:Link:rLink:signed_word:(&(CPU)->reg[Link]) +compute:Link:rLink:signed_word*:(&(CPU)->reg[Link]) # # Trap Number compute:UTN:UTN: |