Deleted Added
sdiff udiff text old ( 10595:25ecfc14f73f ) new ( 10601:6efb37480d87 )
full compact
1/*
2 * Copyright 2014 Google, Inc.
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

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

230 for (int i = 0; i < GdbFloatArchRegs; i++)
231 context->setFloatRegBits(i, gdbregs.regs32[GdbIntRegs + i]);
232 // FCR, FIR
233 context->setFloatRegBits(FLOATREG_FCCR,
234 gdbregs.regs32[GdbIntRegs + GdbFloatArchRegs + 0]);
235 context->setFloatRegBits(FLOATREG_FIR,
236 gdbregs.regs32[GdbIntRegs + GdbFloatArchRegs + 1]);
237}