Deleted Added
sdiff udiff text old ( 7316:bb190cb8ee69 ) new ( 7344:82a4e24e7fad )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010 ARM Limited
4// All rights reserved
5//
6// The license below extends only to copyright in the software and shall
7// not be construed as granting a license to any other intellectual
8// property including but not limited to intellectual property relating

--- 193 unchanged lines hidden (view full) ---

202 case 0x6:
203 return new WarnUnimplemented("isb", machInst);
204 default:
205 break;
206 }
207 break;
208 }
209 case 0x3c:
210 return new WarnUnimplemented("bxj", machInst);
211 case 0x3d:
212 {
213 const uint32_t imm32 = bits(machInst, 7, 0);
214 return new SubsImmPclr(machInst, INTREG_PC, INTREG_LR,
215 imm32, false);
216 }
217 case 0x3e:
218 {

--- 59 unchanged lines hidden ---