diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-08-21 16:13:55 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:32 -0400 |
commit | bc3e07536a5aedf55525c385b3ca8f5d1802bd5e (patch) | |
tree | 6ee7d6e87474d47da0ec4f24d5fc3db6a2cd7084 /lisc | |
parent | 681a4c8e3b1b9912ae9560e7016565da1fe54ab2 (diff) | |
download | roux-bc3e07536a5aedf55525c385b3ca8f5d1802bd5e.tar.gz |
fix comments in pmov
Diffstat (limited to 'lisc')
-rw-r--r-- | lisc/tools/pmov.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisc/tools/pmov.c b/lisc/tools/pmov.c index 13714c3..71856e0 100644 --- a/lisc/tools/pmov.c +++ b/lisc/tools/pmov.c @@ -50,10 +50,10 @@ main() for (t=0; t<NReg; t++) switch ((tm >> (2*t)) & 3) { case 0: - /* not in copy, not in use */ + /* not in copy, not in reg */ break; case 1: - /* not in copy, in use */ + /* not in copy, in reg */ radd(&mbeg, Tmp0+t, t+1); break; case 2: |