diff options
author | Eric Christopher <echristo@gmail.com> | 2012-10-23 17:19:15 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-10-23 17:19:15 +0000 |
commit | c33f622c6f7bda2771faab5b389c9ad191da4c30 (patch) | |
tree | 06785745347c15a5729c8a4d1c9a61b1ddda1ac0 /llvm | |
parent | dd8574e8fbbfee4139354044e180c416f9a70382 (diff) | |
download | bcm5719-llvm-c33f622c6f7bda2771faab5b389c9ad191da4c30.tar.gz bcm5719-llvm-c33f622c6f7bda2771faab5b389c9ad191da4c30.zip |
Grammar.
llvm-svn: 166485
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp index 08aba64e460..82b2c46d5ce 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp +++ b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp @@ -446,7 +446,7 @@ void RuntimeDyldELF::processRelocationRef(const ObjRelocationInfo &Rel, SectionEntry &Section = Sections[Rel.SectionID]; uint8_t *Target = Section.Address + Rel.Offset; - // Look up for existing stub. + // Look for an existing stub. StubMap::const_iterator i = Stubs.find(Value); if (i != Stubs.end()) { resolveRelocation(Target, (uint64_t)Target, (uint64_t)Section.Address + |