diff options
Diffstat (limited to 'compiler/compiled_method.cc')
-rw-r--r-- | compiler/compiled_method.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/compiled_method.cc b/compiler/compiled_method.cc index d884bc0ef8..17c2e94652 100644 --- a/compiler/compiled_method.cc +++ b/compiler/compiled_method.cc @@ -88,7 +88,8 @@ uint32_t CompiledCode::AlignCode(uint32_t offset, InstructionSet instruction_set return RoundUp(offset, kArmAlignment); case kMips: return RoundUp(offset, kMipsAlignment); - case kX86: + case kX86: // Fall-through. + case kX86_64: return RoundUp(offset, kX86Alignment); default: LOG(FATAL) << "Unknown InstructionSet: " << instruction_set; |