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

Unified Diff: src/IceCfgNode.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: 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
Index: src/IceCfgNode.h
diff --git a/src/IceCfgNode.h b/src/IceCfgNode.h
index bbfdae203bd14cb7e12a8adab238f5af51e0a962..210f94f1e3946b7f538f4bdc68f666dd21c3d12d 100644
--- a/src/IceCfgNode.h
+++ b/src/IceCfgNode.h
@@ -8,9 +8,8 @@
//===----------------------------------------------------------------------===//
///
/// \file
-/// This file declares the CfgNode class, which represents a single
-/// basic block as its instruction list, in-edge list, and out-edge
-/// list.
+/// This file declares the CfgNode class, which represents a single basic block
+/// as its instruction list, in-edge list, and out-edge list.
///
//===----------------------------------------------------------------------===//
@@ -50,8 +49,8 @@ public:
void setLoopNestDepth(SizeT NewDepth) { LoopNestDepth = NewDepth; }
SizeT getLoopNestDepth() const { return LoopNestDepth; }
- /// The HasReturn flag indicates that this node contains a return
- /// instruction and therefore needs an epilog.
+ /// The HasReturn flag indicates that this node contains a return instruction
+ /// and therefore needs an epilog.
void setHasReturn() { HasReturn = true; }
bool getHasReturn() const { return HasReturn; }
@@ -73,18 +72,17 @@ public:
PhiList &getPhis() { return Phis; }
void appendInst(Inst *Inst);
void renumberInstructions();
- /// Rough and generally conservative estimate of the number of
- /// instructions in the block. It is updated when an instruction is
- /// added, but not when deleted. It is recomputed during
- /// renumberInstructions().
+ /// Rough and generally conservative estimate of the number of instructions in
+ /// the block. It is updated when an instruction is added, but not when
+ /// deleted. It is recomputed during renumberInstructions().
InstNumberT getInstCountEstimate() const { return InstCountEstimate; }
/// @}
/// \name Manage predecessors and successors.
/// @{
- /// Add a predecessor edge to the InEdges list for each of this
- /// node's successors.
+ /// Add a predecessor edge to the InEdges list for each of this node's
+ /// successors.
void computePredecessors();
void computeSuccessors();
CfgNode *splitIncomingEdge(CfgNode *Pred, SizeT InEdgeIndex);

Powered by Google App Engine
This is Rietveld 408576698