1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
/* Generated by re2c */
// re2c $INPUT -o $OUTPUT -i --location-format gnu
{
YYCTYPE yych;
if (YYLIMIT <= YYCURSOR) YYFILL(1);
yych = *YYCURSOR;
switch (yych) {
case 'Z':
case '[':
case '\\':
case ']':
case '^':
case '_':
case '`':
case 'a': goto yy2;
default: goto yy1;
}
yy1:
++YYCURSOR;
{}
yy2:
++YYCURSOR;
{}
}
{
YYCTYPE yych;
if (YYLIMIT <= YYCURSOR) YYFILL(1);
yych = *YYCURSOR;
switch (yych) {
case 0x07:
case 'h': goto yy5;
default: goto yy4;
}
yy4:
yy5:
++YYCURSOR;
{}
}
messages/nested/msg_02.re.inc:2:9: warning: range lower bound (0x61) is greater than upper bound (0x5A), swapping [-Wswapped-range]
messages/nested/msg_02.re.inc:6:11: warning: escape has no effect: '\h' [-Wuseless-escape]
messages/msg_02_i_location_format_gnu.re:9:0: warning: control flow is undefined for strings that match '[\x0-\x6\x8-\x67\x69-\xFF]', use default rule '*' [-Wundefined-control-flow]
|