diff options
author | Ruchira Sasanka <sasanka@students.uiuc.edu> | 2001-09-08 14:32:00 +0000 |
---|---|---|
committer | Ruchira Sasanka <sasanka@students.uiuc.edu> | 2001-09-08 14:32:00 +0000 |
commit | 0286ade27f9bff026ec64fe81dfd1050f530d10d (patch) | |
tree | b89a232d02e16b906c8688252e160fc5470516d7 /include/llvm/CodeGen/MachineInstr.h | |
parent | 7cd2ca13c1920e9db68695a364048cb6586bb324 (diff) |
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@506 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineInstr.h')
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 949c1832d1..6566335e16 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -412,8 +412,8 @@ MachineCodeForVMInstr::~MachineCodeForVMInstr() class MachineCodeForBasicBlock: public vector<MachineInstr*> { public: - typedef vector<MachineInstr*>::iterator iterator; - typedef vector<MachineInstr*>::const_iterator const_iterator; + typedef vector<const MachineInstr*>::iterator iterator; + typedef vector<const MachineInstr*>::const_iterator const_iterator; }; |