diff options
author | 2014-11-24 17:29:36 +0000 | |
---|---|---|
committer | 2014-11-24 17:29:37 +0000 | |
commit | ad92b1146fa2e3f9e1dbb64c9faaedf8e82a6d23 (patch) | |
tree | 9ffea05b1e202c22b043224703f70d6e540464ea /compiler/optimizing/nodes.h | |
parent | 8173e4776afac6e8da01c42ddab09b635769415f (diff) | |
parent | 3054a90063d379ab8c9e5a42a7daf0d644b48b07 (diff) |
Merge "Fix the computation of linear ordering."
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index b47549add5..f562113e6e 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -236,7 +236,7 @@ class HLoopInformation : public ArenaObject<kArenaAllocMisc> { return false; } - int NumberOfBackEdges() const { + size_t NumberOfBackEdges() const { return back_edges_.Size(); } |