diff options
Diffstat (limited to 'runtime/reflection.cc')
-rw-r--r-- | runtime/reflection.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/reflection.cc b/runtime/reflection.cc index 85f9938934..2aeb92d49a 100644 --- a/runtime/reflection.cc +++ b/runtime/reflection.cc @@ -77,12 +77,6 @@ class ArgArray { } void AppendWide(uint64_t value) { - // For ARM and MIPS portable, align wide values to 8 bytes (ArgArray starts at offset of 4). -#if defined(ART_USE_PORTABLE_COMPILER) && (defined(__arm__) || defined(__mips__)) - if (num_bytes_ % 8 == 0) { - num_bytes_ += 4; - } -#endif arg_array_[num_bytes_ / 4] = value; arg_array_[(num_bytes_ / 4) + 1] = value >> 32; num_bytes_ += 8; |