diff options
author | Andreas Gampe <agampe@google.com> | 2014-09-30 08:39:37 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2014-09-30 08:39:37 -0700 |
commit | 35c68e3018d0066eec8e374897d5cf07e1360729 (patch) | |
tree | 064075304a45e1f43822b7784115592eb6f86c9d /compiler/utils | |
parent | 00ade1e5eb76318790aad096ded1b7c4e9638785 (diff) | |
download | art-35c68e3018d0066eec8e374897d5cf07e1360729.zip art-35c68e3018d0066eec8e374897d5cf07e1360729.tar.gz art-35c68e3018d0066eec8e374897d5cf07e1360729.tar.bz2 |
ART: Fix typo
Fixes a miss-translation in the pedantic change.
Change-Id: Ibdce896bf3667e06f10d60f160803451096b08ba
Diffstat (limited to 'compiler/utils')
-rw-r--r-- | compiler/utils/arm/assembler_thumb2.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/arm/assembler_thumb2.cc b/compiler/utils/arm/assembler_thumb2.cc index 7427721..7968a77 100644 --- a/compiler/utils/arm/assembler_thumb2.cc +++ b/compiler/utils/arm/assembler_thumb2.cc @@ -740,7 +740,7 @@ void Thumb2Assembler::Emit32BitDataProcessing(Condition cond, case SUB: thumb_opcode = 13U /* 0b1101 */; break; case RSB: thumb_opcode = 14U /* 0b1110 */; break; case ADD: thumb_opcode = 8U /* 0b1000 */; break; - case ADC: thumb_opcode = 12U /* 0b1010 */; break; + case ADC: thumb_opcode = 10U /* 0b1010 */; break; case SBC: thumb_opcode = 11U /* 0b1011 */; break; case RSC: break; case TST: thumb_opcode = 0U /* 0b0000 */; set_cc = true; rd = PC; break; |