arch: print next upc correctly
The patch corrects the print statement which prints the current and the next pc. Instead of the next upc, the next pc was being printed.
This commit is contained in:
@@ -269,7 +269,7 @@ std::ostream &
|
||||
operator<<(std::ostream & os, const UPCState<MachInst> &pc)
|
||||
{
|
||||
ccprintf(os, "(%#x=>%#x).(%d=>%d)",
|
||||
pc.pc(), pc.npc(), pc.upc(), pc.npc());
|
||||
pc.pc(), pc.npc(), pc.upc(), pc.nupc());
|
||||
return os;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user