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

Unified Diff: src/IceGlobalInits.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/IceGlobalInits.h ('k') | src/IceInst.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceGlobalInits.cpp
diff --git a/src/IceGlobalInits.cpp b/src/IceGlobalInits.cpp
index c95456c6421af516bc67a66cc6f001a25cf5353b..2c1460a8799bb428ce98fbedcc6808f5dd12c6cf 100644
--- a/src/IceGlobalInits.cpp
+++ b/src/IceGlobalInits.cpp
@@ -8,9 +8,8 @@
//===----------------------------------------------------------------------===//
///
/// \file
-/// This file implements the notion of function declarations, global
-/// variable declarations, and the corresponding variable initializers
-/// in Subzero.
+/// This file implements the notion of function declarations, global variable
+/// declarations, and the corresponding variable initializers in Subzero.
///
//===----------------------------------------------------------------------===//
@@ -152,9 +151,8 @@ void VariableDeclaration::DataInitializer::dump(GlobalContext *,
return;
dumpType(Stream);
Stream << " c\"";
- // Code taken from PrintEscapedString() in AsmWriter.cpp. Keep
- // the strings in the same format as the .ll file for practical
- // diffing.
+ // Code taken from PrintEscapedString() in AsmWriter.cpp. Keep the strings in
+ // the same format as the .ll file for practical diffing.
for (uint8_t C : Contents) {
if (isprint(C) && C != '\\' && C != '"')
Stream << C;
« no previous file with comments | « src/IceGlobalInits.h ('k') | src/IceInst.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698