summaryrefslogtreecommitdiff
path: root/compiler/optimizing/ssa_builder.h
diff options
context:
space:
mode:
author Mathieu Chartier <mathieuc@google.com> 2016-10-12 23:47:10 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-10-12 23:47:10 +0000
commit480ddd6f589047376dd90fa4bc49cce256d43aef (patch)
tree062ce1ad412c5f0abb119ce8875ff91fb1fccc2a /compiler/optimizing/ssa_builder.h
parentc2f1fc70dba4db8751248c4ad15315946f6d13d0 (diff)
parente8a3c576301fd531d5f73a65fc8b84a63619d580 (diff)
Merge "Replace StackHandleScopeCollection with VariableSizedHandleScope"
Diffstat (limited to 'compiler/optimizing/ssa_builder.h')
-rw-r--r--compiler/optimizing/ssa_builder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/ssa_builder.h b/compiler/optimizing/ssa_builder.h
index d7360adef8..45dac54115 100644
--- a/compiler/optimizing/ssa_builder.h
+++ b/compiler/optimizing/ssa_builder.h
@@ -49,7 +49,7 @@ class SsaBuilder : public ValueObject {
public:
SsaBuilder(HGraph* graph,
Handle<mirror::DexCache> dex_cache,
- StackHandleScopeCollection* handles)
+ VariableSizedHandleScope* handles)
: graph_(graph),
dex_cache_(dex_cache),
handles_(handles),
@@ -116,7 +116,7 @@ class SsaBuilder : public ValueObject {
HGraph* graph_;
Handle<mirror::DexCache> dex_cache_;
- StackHandleScopeCollection* const handles_;
+ VariableSizedHandleScope* const handles_;
// True if types of ambiguous ArrayGets have been resolved.
bool agets_fixed_;