summaryrefslogtreecommitdiff
path: root/runtime/interpreter/unstarted_runtime_test.cc
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2018-10-19 14:06:15 -0700
committer Andreas Gampe <agampe@google.com> 2018-10-23 15:19:55 -0700
commit98ea9d9d82ab078ca10fa7f8e02eddda94cf1d98 (patch)
treea848b7e41ff227a2d3d4d6795ec11089f39cb6ca /runtime/interpreter/unstarted_runtime_test.cc
parent02338775e33b553be51d44ff60bb1ef8e527bd94 (diff)
ART: Refactor for bugprone-argument-comment
Handles runtime. Bug: 116054210 Test: WITH_TIDY=1 mmma art Change-Id: Ibc0d5086809d647f0ce4df5452eb84442d27ecf0
Diffstat (limited to 'runtime/interpreter/unstarted_runtime_test.cc')
-rw-r--r--runtime/interpreter/unstarted_runtime_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/interpreter/unstarted_runtime_test.cc b/runtime/interpreter/unstarted_runtime_test.cc
index bd2705d530..3fafc31e21 100644
--- a/runtime/interpreter/unstarted_runtime_test.cc
+++ b/runtime/interpreter/unstarted_runtime_test.cc
@@ -695,7 +695,7 @@ TEST_F(UnstartedRuntimeTest, Ceil) {
{ ld2, ld2 }
};
- TestCeilFloor(true /* ceil */, self, tmp.get(), test_pairs, arraysize(test_pairs));
+ TestCeilFloor(/* ceil= */ true, self, tmp.get(), test_pairs, arraysize(test_pairs));
}
TEST_F(UnstartedRuntimeTest, Floor) {
@@ -722,7 +722,7 @@ TEST_F(UnstartedRuntimeTest, Floor) {
{ ld2, ld2 }
};
- TestCeilFloor(false /* floor */, self, tmp.get(), test_pairs, arraysize(test_pairs));
+ TestCeilFloor(/* ceil= */ false, self, tmp.get(), test_pairs, arraysize(test_pairs));
}
TEST_F(UnstartedRuntimeTest, ToLowerUpper) {