Deleted Added
sdiff udiff text old ( 7323:3b28dfe5a13a ) new ( 7326:299edea3e5a2 )
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

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

250 // A8-594
251 return new WarnUnimplemented("vdup", machInst);
252 }
253 } else if (l == 1 && c == 0) {
254 if (a == 0) {
255 // A8-648
256 return new WarnUnimplemented("vmov", machInst);
257 } else if (a == 7) {
258 // A8-658
259 // B6-27
260 return new WarnUnimplemented("vmrs", machInst);
261 }
262 } else {
263 // A8-646
264 return new WarnUnimplemented("vmov", machInst);
265 }
266 return new Unknown(machInst);
267 }
268 '''
269}};