Displaying 3 results from an estimated 3 matches for "yynewstate".
Did you mean:
newstate
2001 Aug 09
0
20010731 Build problem on solaris 7.0 on Sparc.
...rning: this is the location of the previous
definition
./ppy.y:789: warning: missing braces around initializer for `yytoks[0]'
/usr/ccs/bin/yaccpar: In function `ppparse':
/usr/ccs/bin/yaccpar:374: warning: label `yyerrlab' defined but not used
/usr/ccs/bin/yaccpar:164: warning: label `yynewstate' defined but not
used
gcc -c -I. -I. -I../../include -I../../include -g -O2 -Wall -D__WINE__
-D_REENTRANT -I/usr/openwin/include -o lex.ppl.o lex.ppl.c
In file included from ./ppl.l:141:
../../include/config.h:480: warning: `_FILE_OFFSET_BITS' redefined
/usr/include/sys/feature_tests.h:96:...
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not
allocating RBP to any virtual register, the instances of RBP in function
foo are in the machine code when my register allocator starts.)
Function foo calls function bar. Register RBP is not saved across the
call, though it is live after the call. Function bar includes a virtual
register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...sp;
int yyerrstatus;
int yychar1 = 0;
short yyssa[200];
int yyvsa[200];
short *yyss = yyssa;
int *yyvs = yyvsa;
int yystacksize = 200;
int yyfree_stacks = 0;
int yyval;
int yylen;
yystate = 0;
yyerrstatus = 0;
yynerrs = 0;
yychar = -2;
yyssp = yyss - 1;
yyvsp = yyvs;
yynewstate:
*++yyssp = yystate;
if (yyssp >= yyss + yystacksize - 1)
{
int *yyvs1 = yyvs;
short *yyss1 = yyss;
int size = yyssp - yyss + 1;
if (yystacksize >= 10000)
{
yyerror("parser stack overflow");
if (yyfree_stacks)
{
free (yyss);...