1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Fix up comment typo and 80-col.

llvm-svn: 167560
This commit is contained in:
Eric Christopher 2012-11-07 23:38:51 +00:00
parent b34bece6a8
commit f81ddf639b

View File

@ -91,10 +91,10 @@ public:
};
// In place of applying the relocations to the data we've read from disk we use
// a separate mapping table to the side and checking that at locations in the dwarf
// we expec relocated values. This adds a bit of complexity to the dwarf
// parsing/extraction at the benefit of not allocating memory for the entire
// size of the debug info sections.
// a separate mapping table to the side and checking that at locations in the
// dwarf where we expect relocated values. This adds a bit of complexity to the
// dwarf parsing/extraction at the benefit of not allocating memory for the
// entire size of the debug info sections.
typedef DenseMap<uint64_t, std::pair<uint8_t, int64_t> > RelocAddrMap;
class DIContext {