0

次の文法で定義 $$ を構造体として変更したい yylval を str として宣言しましたが、gcc で .c ファイルをコンパイルするとエラーが発生します

gcc *.c -ly 
tp.l: In function ‘yylex’:
tp.l:12: error: request for member ‘sum’ in something not a structure or union
y.tab.c:1035: error: conflicting types for ‘yylval’
tp.y:11: note: previous declaration of ‘yylval’ was here

yacc ファイル:

 %{
        #include <ctype.h>
        #include <stdio.h>
        #include <stdlib.h>

        typedef struct {
            int val;
            int cpt;
        } str;

        str yylval;

%}
        %start  start 
        %token  number

%%
    start : number'+'number'\n'
    ;

%%

int main(void)
{
        yyparse();
        return 0;
}

lex ファイル:

%option noyywrap

%{
    #include<stdio.h>
    #include<stdlib.h>
    #include<ctype.h>
    #include"y.tab.h"
%}

%%
[0-9]+  {
            yylval = atoi(yytext); 
            return number;
        }

"+"     return '+';
\n      return '\n';
" " ;

%%
4

1 に答える 1

3

独自の を定義することはできませんyylval。生成されたコードは既にこれを定義しています。%unionディレクティブを使用して間接的に型を定​​義します。それが適切でない場合、できることは、YYSTYPE任意の型指定子に展開されるマクロを再定義することです。例えば:

struct my_semantic_attributes {
  int foo;
  /* ... */
};

#define YYSTYPE struct my_semantic_attributes
于 2012-05-17T16:11:45.670 に答える