Bug fix: need to initialize new CallArgsDescriptor pointer.

llvm-svn: 4453
This commit is contained in:
Vikram S. Adve 2002-10-30 20:38:49 +00:00
parent eaad439223
commit 9a51899691
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class MachineCodeForInstruction : public Annotation {
std::vector<MachineInstr*> Contents; // the machine instr for this VM instr
CallArgsDescriptor* callArgsDesc; // only used for CALL instructions
public:
MachineCodeForInstruction() : Annotation(MCFI_AID) {}
MachineCodeForInstruction() : Annotation(MCFI_AID), callArgsDesc(NULL) {}
~MachineCodeForInstruction();
static MachineCodeForInstruction &get(const Instruction *I) {