diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-03 00:32:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-03 00:32:55 +0000 |
commit | af1563fb62ed76f4818ac172ab1c6cf15fa35a82 (patch) | |
tree | f93013e5cf1e94a354496c46e17b28dc31b8900b /lib/CodeGen/ELFWriter.cpp | |
parent | 23118b649e15774024e4d81566a16454a91c8e9a (diff) |
Change the BasicBlockAddrs map to be a vector, indexed by MBB number.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28069 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ELFWriter.cpp')
-rw-r--r-- | lib/CodeGen/ELFWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/ELFWriter.cpp b/lib/CodeGen/ELFWriter.cpp index 69302a3605..780ba543cd 100644 --- a/lib/CodeGen/ELFWriter.cpp +++ b/lib/CodeGen/ELFWriter.cpp @@ -71,7 +71,7 @@ namespace llvm { } virtual void emitJumpTableInfo(MachineJumpTableInfo *MJTI, - std::map<MachineBasicBlock*,uint64_t> &MBBM){ + std::vector<uint64_t> &MBBM) { assert(0 && "JT not implementated yet!"); } |