diff options
author | Douglas Leung <douglas.leung@imgtec.com> | 2015-04-30 19:22:49 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2015-05-06 20:49:09 -0700 |
commit | d90957fbe6f41c66d5494ae5db1f60d2434d4c84 (patch) | |
tree | 684845d53237196fa8dd66dd545d6b33cdb71051 /runtime/common_runtime_test.h | |
parent | 8771be9a5826ebe12cea0c2feb0fa085df5d60a2 (diff) | |
download | art-d90957fbe6f41c66d5494ae5db1f60d2434d4c84.zip art-d90957fbe6f41c66d5494ae5db1f60d2434d4c84.tar.gz art-d90957fbe6f41c66d5494ae5db1f60d2434d4c84.tar.bz2 |
ART: Fix mips64 jni bugs.
For mips64, 32-bits loads can be zero extended or sign extended to
64-bits. The extension type must match the data type to be loaded.
Also re-enable mips64 generic jni testing.
Change-Id: I9cabaf80b4fde63d9868fccd74593b36d1c324e8
Diffstat (limited to 'runtime/common_runtime_test.h')
-rw-r--r-- | runtime/common_runtime_test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/common_runtime_test.h b/runtime/common_runtime_test.h index 9917378..34fdd8d 100644 --- a/runtime/common_runtime_test.h +++ b/runtime/common_runtime_test.h @@ -182,7 +182,7 @@ class CheckJniAbortCatcher { } #define TEST_DISABLED_FOR_MIPS() \ - if (kRuntimeISA == kMips || kRuntimeISA == kMips64) { \ + if (kRuntimeISA == kMips) { \ printf("WARNING: TEST DISABLED FOR MIPS\n"); \ return; \ } |