summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2012-11-07 23:38:51 +0000
committerEric Christopher <echristo@gmail.com>2012-11-07 23:38:51 +0000
commiteb3a8c5288110ddf183e3e8b8babc303f6b78020 (patch)
tree28ac6729c46307c8145ed411c392d0307e228290 /include
parent806e03d2381709ddfb5a8012729bbe6eae12caf5 (diff)
downloadllvm-eb3a8c5288110ddf183e3e8b8babc303f6b78020.tar.gz
llvm-eb3a8c5288110ddf183e3e8b8babc303f6b78020.tar.bz2
llvm-eb3a8c5288110ddf183e3e8b8babc303f6b78020.tar.xz
Fix up comment typo and 80-col.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167560 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/DebugInfo/DIContext.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/DebugInfo/DIContext.h b/include/llvm/DebugInfo/DIContext.h
index 2e34bacdd3..26bd1f6275 100644
--- a/include/llvm/DebugInfo/DIContext.h
+++ b/include/llvm/DebugInfo/DIContext.h
@@ -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 {