diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-04 05:04:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-04 05:04:52 +0000 |
commit | cad3569656df1f41c350707854793f69ce660771 (patch) | |
tree | 4c1bb41342a21a7168106e6605e6ac72f691e304 /utils | |
parent | 7cc7d987a4faeb0385defcf54b0f7b42f2b5aa7d (diff) | |
download | external_llvm-cad3569656df1f41c350707854793f69ce660771.zip external_llvm-cad3569656df1f41c350707854793f69ce660771.tar.gz external_llvm-cad3569656df1f41c350707854793f69ce660771.tar.bz2 |
Transition complete, remove the obsolete 'set' keyword
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7566 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/FileLexer.l | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/utils/TableGen/FileLexer.l b/utils/TableGen/FileLexer.l index 63cb155..9f68955 100644 --- a/utils/TableGen/FileLexer.l +++ b/utils/TableGen/FileLexer.l @@ -160,7 +160,6 @@ class { return CLASS; } def { return DEF; } field { return FIELD; } let { return LET; } -set { return LET; } in { return IN; } {Identifier} { Filelval.StrVal = new std::string(yytext, yytext+yyleng); |