Deleted Added
sdiff udiff text old ( 7853:69aae4379062 ) new ( 8140:7449084b1612 )
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

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

891 ss << ", ";
892 printReg(ss, urb);
893 ss << ", ";
894 ccprintf(ss, "#%d", imm);
895 return ss.str();
896}
897
898std::string
899MicroIntMov::generateDisassembly(Addr pc, const SymbolTable *symtab) const
900{
901 std::stringstream ss;
902 printMnemonic(ss);
903 printReg(ss, ura);
904 ss << ", ";
905 printReg(ss, urb);
906 return ss.str();

--- 30 unchanged lines hidden ---