diff options
author | 2016-04-15 17:01:11 +0000 | |
---|---|---|
committer | 2016-04-15 17:01:11 +0000 | |
commit | 34d9b04d8d0006967486c0ad1b221e7b632652af (patch) | |
tree | cf00b5f4af53b6eadef0c3e3f8c05f743176271e /compiler/optimizing/ssa_builder.h | |
parent | 27bb86edf60e2f9ca2c1075c0c86b9e79374f1d0 (diff) |
Revert "Use dex cache from compilation unit in RTP."
bug:28210356
This reverts commit 27bb86edf60e2f9ca2c1075c0c86b9e79374f1d0.
Change-Id: Ib27ee90a7e4d516fd2db67a9c4e454023737841a
Diffstat (limited to 'compiler/optimizing/ssa_builder.h')
-rw-r--r-- | compiler/optimizing/ssa_builder.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/compiler/optimizing/ssa_builder.h b/compiler/optimizing/ssa_builder.h index d7360adef8..c37c28c801 100644 --- a/compiler/optimizing/ssa_builder.h +++ b/compiler/optimizing/ssa_builder.h @@ -47,11 +47,8 @@ namespace art { */ class SsaBuilder : public ValueObject { public: - SsaBuilder(HGraph* graph, - Handle<mirror::DexCache> dex_cache, - StackHandleScopeCollection* handles) + SsaBuilder(HGraph* graph, StackHandleScopeCollection* handles) : graph_(graph), - dex_cache_(dex_cache), handles_(handles), agets_fixed_(false), ambiguous_agets_(graph->GetArena()->Adapter(kArenaAllocGraphBuilder)), @@ -115,7 +112,6 @@ class SsaBuilder : public ValueObject { void RemoveRedundantUninitializedStrings(); HGraph* graph_; - Handle<mirror::DexCache> dex_cache_; StackHandleScopeCollection* const handles_; // True if types of ambiguous ArrayGets have been resolved. |