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
This commit is contained in:
Reid Spencer
2006-12-02 15:16:01 +00:00
parent 7a33f8d7cd
commit f8483657b3
7 changed files with 602 additions and 450 deletions

View File

@@ -17,6 +17,7 @@
#include <string>
#include <istream>
#include <vector>
// Global variables exported from the lexer...
@@ -110,4 +111,7 @@ struct ConstInfo {
void destroy() { delete cnst; type.destroy(); }
};
typedef std::vector<ValueInfo> ValueList;
#endif