#include "misc.h"
#ifdef WITH_PROFILE
-static const char * id_names[] = {
+static const char * const id_names[] = {
"RXO_unknown",
"RXO_mov", /* d = s (signed) */
"RXO_movbi", /* d = [s,s2] (signed) */
"RXO_sccnd", /* d = cond(s) ? 1 : 0 */
};
-static const char * optype_names[] = {
+static const char * const optype_names[] = {
" - ",
"#Imm", /* #addend */
" Rn ", /* Rn */
#endif /* else CYCLE_ACCURATE */
-static int size2bytes[] = {
+static const int size2bytes[] = {
4, 1, 1, 1, 2, 2, 2, 3, 4
};