summaryrefslogtreecommitdiff
path: root/compiler/optimizing/nodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r--compiler/optimizing/nodes.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h
index 214c7baad0..e6e60b7837 100644
--- a/compiler/optimizing/nodes.h
+++ b/compiler/optimizing/nodes.h
@@ -4507,7 +4507,8 @@ class HInvokePolymorphic final : public HInvoke {
uint32_t number_of_arguments,
DataType::Type return_type,
uint32_t dex_pc,
- uint32_t dex_method_index)
+ uint32_t dex_method_index,
+ ArtMethod* resolved_method)
: HInvoke(kInvokePolymorphic,
allocator,
number_of_arguments,
@@ -4515,7 +4516,7 @@ class HInvokePolymorphic final : public HInvoke {
return_type,
dex_pc,
dex_method_index,
- nullptr,
+ resolved_method,
kVirtual) {
}