Deleted Added
sdiff udiff text old ( 7230:86187fa97285 ) new ( 7236:7fdb1714f62e )
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

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

787 int64_t arg2Low = bits(Op2.sw, 15, 0);
788 int64_t arg2High = bits(Op2.sw, 31, 16);
789 midRes = (arg1Low + arg2High) >> 1;
790 replaceBits(resTemp, 15, 0, midRes);
791 midRes = (arg1High - arg2Low) >> 1;
792 replaceBits(resTemp, 31, 16, midRes);
793 Dest = resTemp;
794 ''', flagType="none", buildCc=False)
795}};