diff options
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/o3/fetch.hh | 1 | ||||
-rw-r--r-- | src/cpu/ozone/front_end.hh | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/cpu/o3/fetch.hh b/src/cpu/o3/fetch.hh index 425c34428..d881c291f 100644 --- a/src/cpu/o3/fetch.hh +++ b/src/cpu/o3/fetch.hh @@ -290,7 +290,6 @@ class DefaultFetch /** Align a PC to the start of an I-cache block. */ Addr icacheBlockAlignPC(Addr addr) { - addr = TheISA::realPCToFetchPC(addr); return (addr & ~(cacheBlkMask)); } diff --git a/src/cpu/ozone/front_end.hh b/src/cpu/ozone/front_end.hh index 3809db00d..892e279c0 100644 --- a/src/cpu/ozone/front_end.hh +++ b/src/cpu/ozone/front_end.hh @@ -167,7 +167,6 @@ class FrontEnd // We fold in the PISA 64- to 32-bit conversion here as well. Addr icacheBlockAlignPC(Addr addr) { - addr = TheISA::realPCToFetchPC(addr); return (addr & ~(cacheBlkMask)); } |