From 35c68e3018d0066eec8e374897d5cf07e1360729 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Tue, 30 Sep 2014 08:39:37 -0700 Subject: [PATCH] ART: Fix typo Fixes a miss-translation in the pedantic change. Change-Id: Ibdce896bf3667e06f10d60f160803451096b08ba --- compiler/utils/arm/assembler_thumb2.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/utils/arm/assembler_thumb2.cc b/compiler/utils/arm/assembler_thumb2.cc index 74277212d..7968a7774 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; -- 2.11.0