diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-10 22:04:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-10 22:04:25 +0000 |
commit | fb9ea58eb1ad43b9a82f658230b91b9e5767cba1 (patch) | |
tree | c55840b7a06a49088e256cc9e3e294cadef9b65c /utils | |
parent | a4a53a5b93e3d989f52d8eaa5f19947995f9424f (diff) | |
download | external_llvm-fb9ea58eb1ad43b9a82f658230b91b9e5767cba1.zip external_llvm-fb9ea58eb1ad43b9a82f658230b91b9e5767cba1.tar.gz external_llvm-fb9ea58eb1ad43b9a82f658230b91b9e5767cba1.tar.bz2 |
Recognize $foo as a variable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7712 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/FileLexer.l | 2 | ||||
-rw-r--r-- | utils/TableGen/FileParser.y | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/utils/TableGen/FileLexer.l b/utils/TableGen/FileLexer.l index 4f54a52..98370a7 100644 --- a/utils/TableGen/FileLexer.l +++ b/utils/TableGen/FileLexer.l @@ -166,6 +166,8 @@ in { return IN; } {Identifier} { Filelval.StrVal = new std::string(yytext, yytext+yyleng); return ID; } +${Identifier} { Filelval.StrVal = new std::string(yytext+1, yytext+yyleng); + return VARNAME; } {StringVal} { Filelval.StrVal = new std::string(yytext+1, yytext+yyleng-1); return STRVAL; } diff --git a/utils/TableGen/FileParser.y b/utils/TableGen/FileParser.y index 0ab3e5b..5b983eb 100644 --- a/utils/TableGen/FileParser.y +++ b/utils/TableGen/FileParser.y @@ -171,7 +171,7 @@ static void addSubClass(Record *SC, const std::vector<Init*> &TemplateArgs) { %token INT BIT STRING BITS LIST CODE DAG CLASS DEF FIELD LET IN %token <IntVal> INTVAL -%token <StrVal> ID STRVAL CODEFRAGMENT +%token <StrVal> ID VARNAME STRVAL CODEFRAGMENT %type <Ty> Type %type <Rec> ClassInst DefInst Object ObjectBody ClassID |