Hexagon (target/hexagon) cleanup reg_field_info definition

Include size in declaration
Remove {0, 0} entry

Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <1617930474-31979-15-git-send-email-tsimpson@quicinc.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
Taylor Simpson 2021-04-08 20:07:42 -05:00 committed by Richard Henderson
parent 9fe33c0e70
commit 80be682844
2 changed files with 3 additions and 4 deletions

View File

@ -18,10 +18,9 @@
#include "qemu/osdep.h"
#include "reg_fields.h"
const RegField reg_field_info[] = {
const RegField reg_field_info[NUM_REG_FIELDS] = {
#define DEF_REG_FIELD(TAG, START, WIDTH) \
{ START, WIDTH },
#include "reg_fields_def.h.inc"
{ 0, 0 }
#undef DEF_REG_FIELD
};

View File

@ -23,8 +23,6 @@ typedef struct {
int width;
} RegField;
extern const RegField reg_field_info[];
enum {
#define DEF_REG_FIELD(TAG, START, WIDTH) \
TAG,
@ -33,4 +31,6 @@ enum {
#undef DEF_REG_FIELD
};
extern const RegField reg_field_info[NUM_REG_FIELDS];
#endif