slicc: work around improper initialization of a global in slicc.

This commit is contained in:
Nathan Binkert 2009-05-12 22:33:05 -07:00
parent d923ce0f8c
commit 0c2b9cf90d
3 changed files with 9 additions and 5 deletions

View file

@ -39,11 +39,15 @@
#include "mem/slicc/ast/Location.hh"
int g_line_number = 0;
string g_file_name("");
string &g_file_name()
{
static string the_string;
return the_string;
}
Location::Location()
{
m_file_name = g_file_name;
m_file_name = g_file_name();
m_line_number = g_line_number;
ostringstream sstr;

View file

@ -42,7 +42,7 @@
#include "mem/slicc/slicc_global.hh"
extern int g_line_number;
extern string g_file_name;
extern string &g_file_name();
class Location {
public:

View file

@ -337,7 +337,7 @@ DeclListAST* parse(string filename)
exit(1);
}
g_line_number = 1;
g_file_name = filename;
g_file_name() = filename;
yyin = file;
g_decl_list_ptr = NULL;
yyparse();
@ -346,7 +346,7 @@ DeclListAST* parse(string filename)
extern "C" void yyerror(char* s)
{
fprintf(stderr, "%s:%d: %s at %s\n", g_file_name.c_str(), g_line_number, s, yytext);
fprintf(stderr, "%s:%d: %s at %s\n", g_file_name().c_str(), g_line_number, s, yytext);
exit(1);
}