From cde339cf1e51d0e6c6e432563333a1159ee3607c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 28 Oct 2006 18:17:09 +0000 Subject: const'ify jump table stuff llvm-svn: 31269 --- llvm/lib/CodeGen/MachineFunction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/CodeGen/MachineFunction.cpp') diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index 7617de9..5d82f72 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -362,7 +362,7 @@ void MachineFrameInfo::dump(const MachineFunction &MF) const { /// or return an existing one. /// unsigned MachineJumpTableInfo::getJumpTableIndex( - std::vector &DestBBs) { + const std::vector &DestBBs) { assert(!DestBBs.empty() && "Cannot create an empty jump table!"); for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) if (JumpTables[i].MBBs == DestBBs) -- cgit v1.1