diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-11-15 20:06:42 -0800 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-11-16 00:41:59 -0500 |
commit | 797eee4264d1b504aabcbcabb6de2f1108441261 (patch) | |
tree | 148efaf024bc68c071fb8de6f1797b472652f6d8 /sim/common | |
parent | 9db36cf86d58f93def38a94ed05e1854beda3b20 (diff) | |
download | gdb-797eee4264d1b504aabcbcabb6de2f1108441261.zip gdb-797eee4264d1b504aabcbcabb6de2f1108441261.tar.gz gdb-797eee4264d1b504aabcbcabb6de2f1108441261.tar.bz2 |
sim: sim-stop/sim-reason/sim-reg: move to common obj list
Now that all arches (for the most part) have moved over, move sim-stop.o,
sim-reason.o, and sim-reg.o to the common object list and out of all the
arch ports.
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 5 | ||||
-rw-r--r-- | sim/common/Make-common.in | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 151fc1b..bdb657f 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2015-11-15 Mike Frysinger <vapier@gentoo.org> + + * Make-common.in (SIM_NEW_COMMON_OBJS): Add sim-reason.o, sim-reg.o, + and sim-stop.o. + 2015-11-14 Mike Frysinger <vapier@gentoo.org> * Make-common.in (SIM_NEW_COMMON_OBJS): Add sim-close.o diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index aba97f7..1766b83 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -190,7 +190,10 @@ SIM_NEW_COMMON_OBJS = \ sim-module.o \ sim-options.o \ sim-profile.o \ + sim-reason.o \ + sim-reg.o \ sim-signal.o \ + sim-stop.o \ sim-syscall.o \ sim-trace.o \ sim-utils.o \ |