diff options
author | 2020-08-25 08:17:37 +0000 | |
---|---|---|
committer | 2020-08-25 09:46:29 +0000 | |
commit | 6a6cca588df43a180534db0b49475a8a5ab4c35a (patch) | |
tree | adafb795eafe8960d664ad18121004f470fb944d /compiler/optimizing/nodes.h | |
parent | 466c66be45cafea4f5339f42acd90b9f40f1ec69 (diff) |
Revert "X86: VarHandle.get() for reference type static fields."
This reverts commit a18ed1bcdb665320c901e1c07b9f92af186077d7.
Reason for revert: Fails 712-varhandle-invocations for art-heap-poisoning and art-read-barrier-heap-poisoning in master-art-host
Change-Id: I703923e2c7b5bc07c2270d0a0328bac8d02b655d
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 9b984d52e7..3ad987e3f0 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -4514,7 +4514,6 @@ class HInvokePolymorphic final : public HInvoke { public: HInvokePolymorphic(ArenaAllocator* allocator, uint32_t number_of_arguments, - uint32_t number_of_other_inputs, DataType::Type return_type, uint32_t dex_pc, uint32_t dex_method_index, @@ -4525,7 +4524,7 @@ class HInvokePolymorphic final : public HInvoke { : HInvoke(kInvokePolymorphic, allocator, number_of_arguments, - number_of_other_inputs, + /* number_of_other_inputs= */ 0u, return_type, dex_pc, dex_method_index, |