diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-02 15:16:01 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-02 15:16:01 +0000 |
commit | f8483657b35f5877ccdf0d056adb8cb55a490c8d (patch) | |
tree | 4216e890d21124cd39d7f12d2741f2e877f65423 /tools/llvm-upgrade/UpgradeParser.h | |
parent | 7a33f8d7cd48c7ab545094d342bca3a6e93ed1a0 (diff) |
Keep lists of values so they can be examined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32120 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-upgrade/UpgradeParser.h')
-rw-r--r-- | tools/llvm-upgrade/UpgradeParser.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/llvm-upgrade/UpgradeParser.h b/tools/llvm-upgrade/UpgradeParser.h index ea0bd568ec..dab25a8383 100644 --- a/tools/llvm-upgrade/UpgradeParser.h +++ b/tools/llvm-upgrade/UpgradeParser.h @@ -281,15 +281,16 @@ #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED) -#line 201 "/proj/llvm/llvm-4/tools/llvm-upgrade/UpgradeParser.y" +#line 209 "/proj/llvm/llvm-4/tools/llvm-upgrade/UpgradeParser.y" typedef union YYSTYPE { std::string* String; TypeInfo Type; ValueInfo Value; ConstInfo Const; + ValueList* ValList; } YYSTYPE; /* Line 1447 of yacc.c. */ -#line 293 "UpgradeParser.tab.h" +#line 294 "UpgradeParser.tab.h" # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 # define YYSTYPE_IS_TRIVIAL 1 |