diff options
| author | 2017-03-29 11:11:52 +0000 | |
|---|---|---|
| committer | 2017-03-29 11:11:54 +0000 | |
| commit | 818553e7a14f290cfee8a31bed4fbdd1a33d0ff6 (patch) | |
| tree | b7b62bdbce04f25897e9994da9ef713627b89334 /compiler/optimizing/optimizing_compiler.cc | |
| parent | 09004f020aa7831e5e667aa7857d6fedf4ecf0d0 (diff) | |
| parent | 1595815c2a914a78df7dfb6f0082f47d4e82bb36 (diff) | |
Merge "MIPS: Implement read barriers."
Diffstat (limited to 'compiler/optimizing/optimizing_compiler.cc')
| -rw-r--r-- | compiler/optimizing/optimizing_compiler.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index 3c6d2d64a9..eb88fdee84 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -454,6 +454,8 @@ static bool IsInstructionSetSupported(InstructionSet instruction_set) { static bool InstructionSetSupportsReadBarrier(InstructionSet instruction_set) { return instruction_set == kArm64 || instruction_set == kThumb2 + || instruction_set == kMips + || instruction_set == kMips64 || instruction_set == kX86 || instruction_set == kX86_64; } |