projects
/
platform
/
upstream
/
binutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4935610
)
sim: rx: add missing break to memory write
author
Mike Frysinger
<vapier@gentoo.org>
Thu, 21 Dec 2023 06:36:40 +0000
(
01:36
-0500)
committer
Mike Frysinger
<vapier@gentoo.org>
Thu, 21 Dec 2023 06:44:13 +0000
(
01:44
-0500)
It doesn't seem like we want to keep executing the next block of code
after processing the request.
sim/rx/mem.c
patch
|
blob
|
history
diff --git
a/sim/rx/mem.c
b/sim/rx/mem.c
index
2cba4cb
..
83e2302
100644
(file)
--- a/
sim/rx/mem.c
+++ b/
sim/rx/mem.c
@@
-324,6
+324,7
@@
mem_put_byte (unsigned int address, unsigned char value)
halt_pipeline_stats ();
else
reset_pipeline_stats ();
+ break;
}
#endif