Fix up comment typo and 80-col.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167560 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher
2012-11-07 23:38:51 +00:00
parent 806e03d238
commit eb3a8c5288

View File

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