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

Unified Diff: runtime/vm/code_patcher_arm64_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_arm64_test.cc
diff --git a/runtime/vm/code_patcher_arm64_test.cc b/runtime/vm/code_patcher_arm64_test.cc
index 058f81d53db7823662e848515a3115461358089c..2872491aed1fafde7cea868b7322590a496b84f2 100644
--- a/runtime/vm/code_patcher_arm64_test.cc
+++ b/runtime/vm/code_patcher_arm64_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()));
Vyacheslav Egorov (Google) 2017/05/13 22:20:13 ditto re commenting the meaning of parameters.
regis 2017/05/18 21:02:12 Done.
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