Deleted Added
sdiff udiff text old ( 7394:bd00fbc41bb1 ) new ( 7398:063002e7106b )
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

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

650 machInst, vd, vm, false);
651 } else {
652 return decodeVfpRegRegOp<VsqrtD>(
653 machInst, vd, vm, true);
654 }
655 }
656 case 0x2:
657 case 0x3:
658 // Between half and single precision.
659 return new WarnUnimplemented("vcvtb, vcvtt", machInst);
660 case 0x4:
661 if (single) {
662 if (e) {
663 return new VcmpeS(machInst, vd, vm);
664 } else {
665 return new VcmpS(machInst, vd, vm);
666 }
667 } else {

--- 184 unchanged lines hidden ---