From a4eb44a285984ec999de632beb5145b099f5416d 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31269 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/MachineFunction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/CodeGen/MachineFunction.cpp') diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index 7617de962d..5d82f722ef 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/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.2.3-18-g5258