summaryrefslogtreecommitdiff
path: root/cpu
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2004-09-16 15:11:38 -0400
committerAli Saidi <saidi@eecs.umich.edu>2004-09-16 15:11:38 -0400
commit9adb64ec70047d7f8709399f67c74402753f6579 (patch)
treeef0777e1aa914067d875f40d7516184538f73929 /cpu
parenta71541a3e81067ebb1b974a2d74c951dc7fcb628 (diff)
downloadgem5-9adb64ec70047d7f8709399f67c74402753f6579.tar.xz
pc event now clears lower 2 bits
always build with dynamic libraries for mysqlclient SConscript: always use dynamic library now cpu/pc_event.hh: cleared lower 2 bits, since everything must be 4byte aligned --HG-- extra : convert_revision : 332ecd25a598e6a46a79bd653449aa7eb22a580a
Diffstat (limited to 'cpu')
-rw-r--r--cpu/pc_event.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/pc_event.hh b/cpu/pc_event.hh
index 131016fc6..9983d679b 100644
--- a/cpu/pc_event.hh
+++ b/cpu/pc_event.hh
@@ -143,7 +143,7 @@ PCEvent::schedule(Addr pc)
{
if (evpc != badpc)
panic("cannot switch PC");
- evpc = pc;
+ evpc = pc & ~0x3;
return schedule();
}
@@ -158,7 +158,7 @@ PCEvent::schedule(PCEventQueue *q, Addr pc)
panic("cannot switch addresses");
queue = q;
- evpc = pc;
+ evpc = pc & ~0x3;
return schedule();
}