}
void code_init() {
- prog_section_function empty_function = {0,0,0,0,0,0,0,{0}};
+ prog_section_function empty_function = {0,0,0,0,0,0,0,{0,0,0,0,0,0,0,0}};
prog_section_statement empty_statement = {0,{0},{0},{0}};
prog_section_def empty_def = {0, 0, 0};
int i = 0;
size_t i, o, p, mem;
/* bitmasks which operands are read from or written to */
size_t read, write;
- char dbg_ind[16] = { '#', '0' };
+ char dbg_ind[16];
+ dbg_ind[0] = '#';
+ dbg_ind[1] = '0';
(void)dbg_ind;
if (prev)
#these don't need to be here to onhibit the warning
# remove one flag from here at a time while fixing the code so that
FLAGS_TOFIX="\
- -initallelements \
-castfcnptr \
-evalorder"
};
static uchar_t utf8_range[5] = {
- 1, /* invalid - let's not allow the creation of 0-bytes :P
- 1, * ascii minimum
- 0x80, * 2-byte minimum
- 0x800, * 3-byte minimum
- 0x10000, * 4-byte minimum */
+ 1, /* invalid - let's not allow the creation of 0-bytes :P */
+ 1, /* ascii minimum */
+ 0x80, /* 2-byte minimum */
+ 0x800, /* 3-byte minimum */
+ 0x10000, /* 4-byte minimum */
};
/** Analyze the next character and return various information if requested.