31a32
> #include "base/loader/symtab.hh"
311a313,329
> void
> ArmStaticInst::printMemSymbol(std::ostream &os,
> const SymbolTable *symtab,
> const std::string &prefix,
> const Addr addr,
> const std::string &suffix) const
> {
> Addr symbolAddr;
> std::string symbol;
> if (symtab && symtab->findNearestSymbol(addr, symbol, symbolAddr)) {
> ccprintf(os, "%s%s", prefix, symbol);
> if (symbolAddr != addr)
> ccprintf(os, "+%d", addr - symbolAddr);
> ccprintf(os, suffix);
> }
> }
>