Deleted Added
sdiff udiff text old ( 7375:7095d84ffb36 ) new ( 7376:3b781776b2d9 )
full compact
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

63 break;
64 case VfpLastMicroop:
65 flags[StaticInst::IsMicroop] =
66 flags[StaticInst::IsLastMicroop] = true;
67 break;
68 case VfpNotAMicroop:
69 break;
70 }
71}
72
73class VfpRegRegOp : public RegRegOp
74{
75 protected:
76 VfpRegRegOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
77 IntRegIndex _dest, IntRegIndex _op1,
78 VfpMicroMode mode = VfpNotAMicroop) :
79 RegRegOp(mnem, _machInst, __opClass, _dest, _op1)
80 {

--- 41 unchanged lines hidden ---