diff options
author | Jim Grosbach <grosbach@apple.com> | 2009-11-14 20:15:03 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2009-11-14 20:15:03 +0000 |
commit | ae84426ed8b323d0d78711983705eff41b46ffd8 (patch) | |
tree | 0575a00e9a798adce2ce9c3a8ae9122103a8108d /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | 43d2108546154165bc47af0bd7b031a7ccdc09c1 (diff) | |
download | llvm-ae84426ed8b323d0d78711983705eff41b46ffd8.zip llvm-ae84426ed8b323d0d78711983705eff41b46ffd8.tar.gz llvm-ae84426ed8b323d0d78711983705eff41b46ffd8.tar.bz2 |
Do not merge jump tables this early. Branch folding will do any necessary
merges, and until then, it's useful to keep the tables separate for ease
of manipulation.
llvm-svn: 88806
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index 3df88fc..81d1301 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -530,10 +530,6 @@ void MachineFrameInfo::dump(const MachineFunction &MF) const { unsigned MachineJumpTableInfo::getJumpTableIndex( const std::vector<MachineBasicBlock*> &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) - return i; - JumpTables.push_back(MachineJumpTableEntry(DestBBs)); return JumpTables.size()-1; } |