aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineJumpTableInfo.h
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-03-19 19:05:41 +0000
committerBob Wilson <bob.wilson@apple.com>2010-03-19 19:05:41 +0000
commit80d23705e6df49a41298fd345be6f8a8d72f4fd0 (patch)
tree5fcd35bff2422a5df38e14c1dbe7f05a2ed40d92 /include/llvm/CodeGen/MachineJumpTableInfo.h
parent602b40f0d06d6275cbe73de2ac3b6b6a7dc1d46d (diff)
Stop trying to merge identical jump tables. This had been inadvertently
disabled for several months (since svn r88806) and no one noticed. My fix for pr6543 yesterday reenabled it, but broke the ARM port's code for using TBB/TBH. Rather than adding a target hook to disable merging for Thumb2 only, I'm just taking this out. It is not common to have identical jump tables, the code we used to merge them was O(N^2), and it only helps code size, not performance. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98977 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineJumpTableInfo.h')
-rw-r--r--include/llvm/CodeGen/MachineJumpTableInfo.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/MachineJumpTableInfo.h b/include/llvm/CodeGen/MachineJumpTableInfo.h
index 85d38ba01c..1b6ab2cd4c 100644
--- a/include/llvm/CodeGen/MachineJumpTableInfo.h
+++ b/include/llvm/CodeGen/MachineJumpTableInfo.h
@@ -87,10 +87,6 @@ public:
///
unsigned createJumpTableIndex(const std::vector<MachineBasicBlock*> &DestBBs);
- /// getJumpTableIndex - Return the index for an existing jump table.
- ///
- unsigned getJumpTableIndex(const std::vector<MachineBasicBlock*> &DestBBs);
-
/// isEmpty - Return true if there are no jump tables.
///
bool isEmpty() const { return JumpTables.empty(); }