Deleted Added
sdiff udiff text old ( 7291:2d21be52e57f ) new ( 7312:03016344f54e )
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

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

82 }
83 printReg(ss, base);
84 if (wb) {
85 ss << "!";
86 }
87 return ss.str();
88}
89
90void
91Memory::printInst(std::ostream &os, AddrMode addrMode) const
92{
93 printMnemonic(os);
94 printDest(os);
95 os << ", [";
96 printReg(os, base);
97 if (addrMode != AddrMd_PostIndex) {

--- 14 unchanged lines hidden ---