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
52
53
54
55
56
57
58
59
60
61
62
|
/* { dg-do compile } */
/* { dg-additional-options "-std=gnu17" } */
extern char *globerr;
char **ftpglob();
static const int yypgoto[] =
{
-82, -82, -82, -82
};
static const int yydefgoto[] =
{
0, 1, 36, 37
};
static const int yytable[] =
{
43, 129, 88, 89
};
static const int yycheck[] =
{
8, 82, 4, 5
};
int yyparse (char **yyvsp, char *yyvsp1)
{
int yystate = 0;
int yyn;
int yyresult;
int yyval;
yyreduce:
switch (yyn)
{
case 72: {
if (__builtin_strncmp( yyvsp[0], "~", 1) == 0) {
*(char **)&(yyval) = *ftpglob(yyvsp[0]);
if (globerr != 0) {
yyval = 0;
}
__builtin_free(yyvsp[0]);
}
}
break;
}
*++yyvsp1 = yyval;
{
const int yyi = yypgoto[0] + *yyvsp1;
yystate = (yycheck[yyi] == *yyvsp1 ? 0 : 0);
}
return yyresult;
}
|