mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 05:25:31 +00:00
target/mips: Clean up lmi_helper.c
Remove several minor checkpatch warnings and errors. Backports commit baf50011157bf5747c623f171f93f9e3d9dff615 from qemu
This commit is contained in:
parent
1c8614c303
commit
115e0f20c5
|
@ -21,9 +21,11 @@
|
|||
#include "cpu.h"
|
||||
#include "exec/helper-proto.h"
|
||||
|
||||
/* If the byte ordering doesn't matter, i.e. all columns are treated
|
||||
identically, then this union can be used directly. If byte ordering
|
||||
does matter, we generally ignore dumping to memory. */
|
||||
/*
|
||||
* If the byte ordering doesn't matter, i.e. all columns are treated
|
||||
* identically, then this union can be used directly. If byte ordering
|
||||
* does matter, we generally ignore dumping to memory.
|
||||
*/
|
||||
typedef union {
|
||||
uint8_t ub[8];
|
||||
int8_t sb[8];
|
||||
|
|
Loading…
Reference in a new issue