aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/ELFWriter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-03 00:32:55 +0000
committerChris Lattner <sabre@nondot.org>2006-05-03 00:32:55 +0000
commitaf1563fb62ed76f4818ac172ab1c6cf15fa35a82 (patch)
treef93013e5cf1e94a354496c46e17b28dc31b8900b /lib/CodeGen/ELFWriter.cpp
parent23118b649e15774024e4d81566a16454a91c8e9a (diff)
downloadexternal_llvm-af1563fb62ed76f4818ac172ab1c6cf15fa35a82.zip
external_llvm-af1563fb62ed76f4818ac172ab1c6cf15fa35a82.tar.gz
external_llvm-af1563fb62ed76f4818ac172ab1c6cf15fa35a82.tar.bz2
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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/ELFWriter.cpp b/lib/CodeGen/ELFWriter.cpp
index 69302a3..780ba54 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!");
}