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

Unified Diff: src/IceTranslator.h

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/IceTimerTree.def ('k') | src/IceTranslator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTranslator.h
diff --git a/src/IceTranslator.h b/src/IceTranslator.h
index 449b216c9b38bea51be2d80bf68ef4ecbdc89c72..415965a7dc3eb610ce042fec34db29fa2a1b8458 100644
--- a/src/IceTranslator.h
+++ b/src/IceTranslator.h
@@ -8,8 +8,8 @@
//===----------------------------------------------------------------------===//
///
/// \file
-/// This file declares the general driver class for translating ICE to
-/// machine code.
+/// This file declares the general driver class for translating ICE to machine
+/// code.
///
//===----------------------------------------------------------------------===//
@@ -30,7 +30,7 @@ class Cfg;
class VariableDeclaration;
class GlobalContext;
-/// Base class for translating ICE to machine code. Derived classes convert
+/// Base class for translating ICE to machine code. Derived classes convert
/// other intermediate representations down to ICE, and then call the
/// appropriate (inherited) methods to convert ICE into machine instructions.
class Translator {
@@ -48,21 +48,21 @@ public:
const ClFlags &getFlags() const { return Ctx->getFlags(); }
- /// Translates the constructed ICE function Fcn to machine code.
- /// Takes ownership of Func.
+ /// Translates the constructed ICE function Fcn to machine code. Takes
+ /// ownership of Func.
void translateFcn(std::unique_ptr<Cfg> Func);
- /// Lowers the given list of global addresses to target. Generates
- /// list of corresponding variable declarations.
+ /// Lowers the given list of global addresses to target. Generates list of
+ /// corresponding variable declarations.
void
lowerGlobals(std::unique_ptr<VariableDeclarationList> VariableDeclarations);
/// Creates a name using the given prefix and corresponding index.
std::string createUnnamedName(const IceString &Prefix, SizeT Index);
- /// Reports if there is a (potential) conflict between Name, and using
- /// Prefix to name unnamed names. Errors are put on Ostream.
- /// Returns true if there isn't a potential conflict.
+ /// Reports if there is a (potential) conflict between Name, and using Prefix
+ /// to name unnamed names. Errors are put on Ostream. Returns true if there
+ /// isn't a potential conflict.
bool checkIfUnnamedNameSafe(const IceString &Name, const char *Kind,
const IceString &Prefix);
« no previous file with comments | « src/IceTimerTree.def ('k') | src/IceTranslator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698