sim: use ARRAY_SIZE instead of ad-hoc sizeof calculations
This commit is contained in:
parent
b1499fc214
commit
13a590ca65
39 changed files with 141 additions and 62 deletions
|
@ -22,6 +22,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "libiberty.h"
|
||||
#include "cpu.h"
|
||||
#include "mem.h"
|
||||
|
||||
|
@ -354,7 +355,7 @@ decode_sd23 (int bbb, int bb, int bytes, int ind, int add)
|
|||
srcdest sd;
|
||||
int code = (bbb << 2) | bb;
|
||||
|
||||
if (code >= sizeof (modes23) / sizeof (modes23[0]))
|
||||
if (code >= ARRAY_SIZE (modes23))
|
||||
abort ();
|
||||
|
||||
if (trace)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue