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

Unified Diff: runtime/vm/code_patcher_arm_test.cc

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month 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
« no previous file with comments | « runtime/vm/code_patcher_arm64_test.cc ('k') | runtime/vm/code_patcher_dbc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 f63c5469f870761cd40122304d876dac1f07c3f2..c3dce93c74b60a67c8fc036d97178fcb70c54a93 100644
--- a/runtime/vm/code_patcher_arm_test.cc
+++ b/runtime/vm/code_patcher_arm_test.cc
@@ -26,22 +26,17 @@ ASSEMBLER_TEST_GENERATE(IcDataAccess, assembler) {
const Script& script = Script::Handle();
const Class& owner_class = Class::Handle(Class::New(
Library::Handle(), class_name, script, TokenPosition::kNoSource));
- const String& function_name = String::Handle(Symbols::New(thread,
- "callerFunction"));
- const Function& function = Function::Handle(
- Function::New(function_name, RawFunction::kRegularFunction,
- true, false, false, false, false, owner_class,
- TokenPosition::kNoSource));
+ const String& function_name =
+ String::Handle(Symbols::New(thread, "callerFunction"));
+ const Function& function = Function::Handle(Function::New(
+ function_name, RawFunction::kRegularFunction, true, false, false, false,
+ false, owner_class, TokenPosition::kNoSource));
const String& target_name = String::Handle(String::New("targetFunction"));
const Array& args_descriptor =
Array::Handle(ArgumentsDescriptor::New(1, Object::null_array()));
- const ICData& ic_data = ICData::ZoneHandle(ICData::New(function,
- target_name,
- args_descriptor,
- 15,
- 1,
- false));
+ const ICData& ic_data = ICData::ZoneHandle(
+ ICData::New(function, target_name, args_descriptor, 15, 1, false));
// Code accessing pp is generated, but not executed. Uninitialized pp is OK.
__ set_constant_pool_allowed(true);
@@ -58,7 +53,7 @@ ASSEMBLER_TEST_RUN(IcDataAccess, test) {
ICData& ic_data = ICData::Handle();
CodePatcher::GetInstanceCallAt(return_address, test->code(), &ic_data);
EXPECT_STREQ("targetFunction",
- String::Handle(ic_data.target_name()).ToCString());
+ String::Handle(ic_data.target_name()).ToCString());
EXPECT_EQ(1, ic_data.NumArgsTested());
EXPECT_EQ(0, ic_data.NumberOfChecks());
}
« no previous file with comments | « runtime/vm/code_patcher_arm64_test.cc ('k') | runtime/vm/code_patcher_dbc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698