summaryrefslogtreecommitdiffstats
path: root/compiler/sea_ir/sea.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/sea_ir/sea.h')
-rw-r--r--compiler/sea_ir/sea.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/sea_ir/sea.h b/compiler/sea_ir/sea.h
index a0a8086568..25ab1fed10 100644
--- a/compiler/sea_ir/sea.h
+++ b/compiler/sea_ir/sea.h
@@ -256,7 +256,7 @@ class SeaGraph: IVisitable {
static void ComputeRPO(Region* crt_bb, int& crt_rpo);
// Returns the "lowest common ancestor" of @i and @j in the dominator tree.
static Region* Intersect(Region* i, Region* j);
- //Returns the vector of parameters of the function.
+ // Returns the vector of parameters of the function.
std::vector<SignatureNode*>* GetParameterNodes() {
return &parameters_;
}
@@ -320,5 +320,5 @@ class SeaGraph: IVisitable {
std::vector<Region*> regions_;
std::vector<SignatureNode*> parameters_;
};
-} // end namespace sea_ir
+} // namespace sea_ir
#endif // ART_COMPILER_SEA_IR_SEA_H_