diff options
author | 2015-09-17 14:15:12 +0100 | |
---|---|---|
committer | 2015-10-02 02:25:25 +0100 | |
commit | 07380a2d6cb9feee02facc81f699eed5cb670cd5 (patch) | |
tree | 95667e028ef49ad15e6a0d4ce38074573d414dd4 /compiler/optimizing/builder.h | |
parent | e460d1df1f789c7c8bb97024a8efbd713ac175e9 (diff) |
Enable compilation of members with access check failures.
Change-Id: I0de73099b53612072c3e6f1235c22f96339fe440
Diffstat (limited to 'compiler/optimizing/builder.h')
-rw-r--r-- | compiler/optimizing/builder.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h index 4c8e3d0442..b2dc24169e 100644 --- a/compiler/optimizing/builder.h +++ b/compiler/optimizing/builder.h @@ -187,6 +187,10 @@ class HGraphBuilder : public ValueObject { // Builds an instance field access node and returns whether the instruction is supported. bool BuildInstanceFieldAccess(const Instruction& instruction, uint32_t dex_pc, bool is_put); + void BuildUnresolvedStaticFieldAccess(const Instruction& instruction, + uint32_t dex_pc, + bool is_put, + Primitive::Type field_type); // Builds a static field access node and returns whether the instruction is supported. bool BuildStaticFieldAccess(const Instruction& instruction, uint32_t dex_pc, bool is_put); |