diff options
author | 2016-01-22 12:41:38 +0000 | |
---|---|---|
committer | 2016-01-22 13:33:57 +0000 | |
commit | 788f2f05c3e5b0e5bda247b00e34f0094585546f (patch) | |
tree | 7e8b578b60bed6e550b62767f1fbc43651755798 /compiler/optimizing/nodes.h | |
parent | c24b8df48be848af1f4cb54e9caef2b7d6afe680 (diff) |
Revert "Revert "Inline methods with loops.""
Bug: 26689526
This reverts commit 451ad8d1be9a1949ea3c3e3a713a9e76198a8b2d.
Change-Id: If484fe4c0744254dd7568fd5006e574d621a1855
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 7067aabaa1..dfd0a63f5a 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -689,6 +689,10 @@ class HLoopInformation : public ArenaObject<kArenaAllocLoopInfo> { void Add(HBasicBlock* block); void Remove(HBasicBlock* block); + void ClearAllBlocks() { + blocks_.ClearAllBits(); + } + private: // Internal recursive implementation of `Populate`. void PopulateRecursive(HBasicBlock* block); |