blob: d29d641da68f6413c39c8696ad36d147511577c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* Generated by re2c */
{
YYCTYPE yych;
if (YYLIMIT <= YYCURSOR) YYFILL(1);
yych = *YYCURSOR;
switch (yych) {
case 'B':
case 'b': goto yy3;
case 'a': goto yy5;
default: goto yy2;
}
yy2:
yy3:
++YYCURSOR;
{return 'b';}
yy5:
++YYCURSOR;
{return 'a';}
}
}
re2c: warning: line 4: control flow is undefined for strings that match '[\x0-\x41\x43-\x60\x63-\xFF]', use default rule '*' [-Wundefined-control-flow]
|