diff options
author | 2018-12-26 15:12:03 -0800 | |
---|---|---|
committer | 2018-12-27 12:56:39 -0800 | |
commit | 3db70689e3e1c92344d436a8ea4265046bdef449 (patch) | |
tree | 3db08743e968062ed5bdc143233cdb3c4564696b /compiler/jni/jni_compiler_test.cc | |
parent | 1650dafad62578a1766bd617d78458a4cf1e2a9a (diff) |
ART: Refactor for bugprone-argument-comment
Handles compiler.
Bug: 116054210
Test: WITH_TIDY=1 mmma art
Change-Id: I5cdfe73c31ac39144838a2736146b71de037425e
Diffstat (limited to 'compiler/jni/jni_compiler_test.cc')
-rw-r--r-- | compiler/jni/jni_compiler_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/jni/jni_compiler_test.cc b/compiler/jni/jni_compiler_test.cc index bd4304c7ff..3c683898e6 100644 --- a/compiler/jni/jni_compiler_test.cc +++ b/compiler/jni/jni_compiler_test.cc @@ -2196,7 +2196,7 @@ void Java_MyClassNatives_normalNative(JNIEnv*, jclass) { // Methods not annotated with anything are not considered "fast native" // -- Check that the annotation lookup does not find it. void JniCompilerTest::NormalNativeImpl() { - SetUpForTest(/* direct */ true, + SetUpForTest(/* direct= */ true, "normalNative", "()V", CURRENT_JNI_WRAPPER(Java_MyClassNatives_normalNative)); @@ -2218,7 +2218,7 @@ void Java_MyClassNatives_fastNative(JNIEnv*, jclass) { } void JniCompilerTest::FastNativeImpl() { - SetUpForTest(/* direct */ true, + SetUpForTest(/* direct= */ true, "fastNative", "()V", CURRENT_JNI_WRAPPER(Java_MyClassNatives_fastNative)); @@ -2241,7 +2241,7 @@ void Java_MyClassNatives_criticalNative() { } void JniCompilerTest::CriticalNativeImpl() { - SetUpForTest(/* direct */ true, + SetUpForTest(/* direct= */ true, // Important: Don't change the "current jni" yet to avoid a method name suffix. "criticalNative", "()V", |