track global inits

llvm-svn: 36385
This commit is contained in:
Chris Lattner
2007-04-24 00:18:21 +00:00
parent 52523561d9
commit 47d131bd32
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() {}