forked from tromey/gdb
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sim: m68hc11: fix up various prototype related warnings
A few funcs are only used locally, so mark them static to avoid warnings due to -Wmissing-prototypes. Some funcs cast the return value wrong, so drop them (and let void * just work by default). Update some prototypes to be new style.
- Loading branch information
Showing
8 changed files
with
29 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
2016-08-13 Mike Frysinger <[email protected]> | ||
|
||
* dv-m68hc11eepr.c (attach_m68hc11eepr_regs): Drop cast with | ||
return value of hw_malloc. | ||
* dv-m68hc11sio.c (m68hc11sio_rx_poll): Mark static. | ||
(m68hc11sio_tx_poll): Likewise. | ||
* dv-m68hc11spi.c (m68hc11spi_clock): Likewise. | ||
* dv-m68hc11tim.c (m68hc11tim_timer_event): Likewise. | ||
* dv-nvram.c (attach_nvram_regs): Drop cast with | ||
return value of hw_malloc. | ||
* emulos.c (emul_bench): Mark static. | ||
(emul_write): Likewise. | ||
(emul_exit): Likewise. | ||
* gencode.c: Include stdio.h. | ||
(gen_function_entry): Unify two print lines. | ||
(cmp_opcode): Mark args const. | ||
|
||
2016-01-10 Mike Frysinger <[email protected]> | ||
|
||
* config.in, configure: Regenerate. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters