summaryrefslogtreecommitdiff
path: root/compiler/optimizing/ssa_builder.h
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2017-02-01 15:43:05 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-02-01 15:43:06 +0000
commit357dcb73934356239292c46d6fbedba734da5e00 (patch)
tree8823c6dd4641eae333aa7001203460757a515010 /compiler/optimizing/ssa_builder.h
parentac240396125911b52437a460a400c8b38be43a96 (diff)
parentd16363a93053de0f32252c7897d839a46aff14ae (diff)
Merge "Revert "Hash-based dex cache type array.""
Diffstat (limited to 'compiler/optimizing/ssa_builder.h')
-rw-r--r--compiler/optimizing/ssa_builder.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/optimizing/ssa_builder.h b/compiler/optimizing/ssa_builder.h
index 978f113ec4..45dac54115 100644
--- a/compiler/optimizing/ssa_builder.h
+++ b/compiler/optimizing/ssa_builder.h
@@ -48,11 +48,9 @@ namespace art {
class SsaBuilder : public ValueObject {
public:
SsaBuilder(HGraph* graph,
- Handle<mirror::ClassLoader> class_loader,
Handle<mirror::DexCache> dex_cache,
VariableSizedHandleScope* handles)
: graph_(graph),
- class_loader_(class_loader),
dex_cache_(dex_cache),
handles_(handles),
agets_fixed_(false),
@@ -117,7 +115,6 @@ class SsaBuilder : public ValueObject {
void RemoveRedundantUninitializedStrings();
HGraph* graph_;
- Handle<mirror::ClassLoader> class_loader_;
Handle<mirror::DexCache> dex_cache_;
VariableSizedHandleScope* const handles_;