track global inits

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36385 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2007-04-24 00:18:21 +00:00
parent 2edd22b959
commit 6dbfd7bfbc
2 changed files with 9 additions and 3 deletions

View File

@@ -22,12 +22,14 @@
namespace llvm {
class BitstreamReader;
class Value;
class GlobalValue;
class BitcodeReader : public ModuleProvider {
const char *ErrorString;
std::vector<PATypeHolder> TypeList;
std::vector<Value*> ValueList;
std::vector<std::pair<GlobalValue*, unsigned> > GlobalInits;
public:
virtual ~BitcodeReader() {}