diff options
author | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:40 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:40 -0400 |
commit | 83a0fd24f72ed46e71c015c23b723c04d39ca93c (patch) | |
tree | 30bf4c308c5a260c0a12d2666f5838aca58780fd /src | |
parent | 33a6020f2ecb51ff4bfa93deaf4ca2f9d044a094 (diff) | |
download | gem5-83a0fd24f72ed46e71c015c23b723c04d39ca93c.tar.xz |
alpha: fix warn_once for prefetches
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/alpha/isa/mem.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/alpha/isa/mem.isa b/src/arch/alpha/isa/mem.isa index 862fe0878..fe72e049e 100644 --- a/src/arch/alpha/isa/mem.isa +++ b/src/arch/alpha/isa/mem.isa @@ -396,7 +396,7 @@ def template MiscExecute {{ %(op_rd)s; %(ea_code)s; - warn_once("Prefetch instrutions is Alpha do not do anything\n"); + warn_once("Prefetch instructions in Alpha do not do anything\n"); if (fault == NoFault) { %(memacc_code)s; } |