Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1822)

Unified Diff: runtime/vm/code_patcher_arm_test.cc

Issue 2859673002: Pass type argument vector to generic functions (if --reify-generic-functions is (Closed)
Patch Set: fix dartk and sync Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/code_patcher_arm_test.cc
diff --git a/runtime/vm/code_patcher_arm_test.cc b/runtime/vm/code_patcher_arm_test.cc
index de3d3003e3343d17b999d51e71781578ac5a6833..71ccbcea33c52add322d4b148954e1282ee46ac5 100644
--- a/runtime/vm/code_patcher_arm_test.cc
+++ b/runtime/vm/code_patcher_arm_test.cc
@@ -34,7 +34,7 @@ ASSEMBLER_TEST_GENERATE(IcDataAccess, assembler) {
const String& target_name = String::Handle(String::New("targetFunction"));
const Array& args_descriptor =
- Array::Handle(ArgumentsDescriptor::New(1, Object::null_array()));
+ Array::Handle(ArgumentsDescriptor::New(0, 1, Object::null_array()));
const ICData& ic_data = ICData::ZoneHandle(
ICData::New(function, target_name, args_descriptor, 15, 1, false));

Powered by Google App Engine
This is Rietveld 408576698