Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: src/IceELFSection.cpp

Issue 1341423002: Reflow comments to use the full width. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix spelling and rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceELFSection.h ('k') | src/IceELFStreamer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceELFSection.cpp
diff --git a/src/IceELFSection.cpp b/src/IceELFSection.cpp
index 7893354b55e4b96c1ac02fd533d526446bd75cd2..3e33c99a429bc783fcb51267e5e6d5c809b141e3 100644
--- a/src/IceELFSection.cpp
+++ b/src/IceELFSection.cpp
@@ -82,8 +82,8 @@ size_t ELFRelocationSection::getSectionDataSize() const {
// Symbol tables.
void ELFSymbolTableSection::createNullSymbol(ELFSection *NullSection) {
- // The first entry in the symbol table should be a NULL entry,
- // so make sure the map is still empty.
+ // The first entry in the symbol table should be a NULL entry, so make sure
+ // the map is still empty.
assert(LocalSymbols.empty());
const IceString NullSymName("");
createDefinedSym(NullSymName, STT_NOTYPE, STB_LOCAL, NullSection, 0, 0);
@@ -208,8 +208,8 @@ void ELFStringTableSection::doLayout() {
assert(StringIndex.second == UnknownIndex);
llvm::StringRef Cur = llvm::StringRef(StringIndex.first);
if (Prev.endswith(Cur)) {
- // Prev is already in the StringData, and Cur is shorter than Prev
- // based on the sort.
+ // Prev is already in the StringData, and Cur is shorter than Prev based
+ // on the sort.
StringIndex.second = StringData.size() - Cur.size() - 1;
continue;
}
« no previous file with comments | « src/IceELFSection.h ('k') | src/IceELFStreamer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698