diff options
author | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-06-25 20:22:25 +0000 |
---|---|---|
committer | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-06-25 20:22:25 +0000 |
commit | 4a9f9337511441af0624e754ad9b2b1262ee584d (patch) | |
tree | 0fe60ad7a0dbfb4dad68bd8f1e57948f5b9e708d /lib/Target/SparcV9/MachineInstrAnnot.h | |
parent | b7c6c2a5cc5c7d11243a14a5c01859b1a506ac0c (diff) | |
download | external_llvm-4a9f9337511441af0624e754ad9b2b1262ee584d.zip external_llvm-4a9f9337511441af0624e754ad9b2b1262ee584d.tar.gz external_llvm-4a9f9337511441af0624e754ad9b2b1262ee584d.tar.bz2 |
changes to make it compatible with 64bit gcc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2786 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/MachineInstrAnnot.h')
-rw-r--r-- | lib/Target/SparcV9/MachineInstrAnnot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/MachineInstrAnnot.h b/lib/Target/SparcV9/MachineInstrAnnot.h index 79298d5..b16408f 100644 --- a/lib/Target/SparcV9/MachineInstrAnnot.h +++ b/lib/Target/SparcV9/MachineInstrAnnot.h @@ -62,7 +62,7 @@ public: class CallArgsDescriptor: public Annotation { // Annotation for a MachineInstr private: static AnnotationID AID; // AnnotationID for this class - vector<CallArgInfo> argInfoVec; // Descriptor for each argument + std::vector<CallArgInfo> argInfoVec; // Descriptor for each argument const CallInst* callInstr; // The call instruction == result value const Value* funcPtr; // Pointer for indirect calls TmpInstruction* retAddrReg; // Tmp value for return address reg. |