aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1994-02-20 12:47:44 -0800
committerJim Wilson <wilson@gcc.gnu.org>1994-02-20 12:47:44 -0800
commit923a8d0689917ec9b6b1faf88bc5f72140bf7f7e (patch)
tree32213b92cf9aee1cf526fe837b18de764ac8aa60
parent8571bab7e68dfd9683740570251352aa75ab9515 (diff)
downloadgcc-923a8d0689917ec9b6b1faf88bc5f72140bf7f7e.zip
gcc-923a8d0689917ec9b6b1faf88bc5f72140bf7f7e.tar.gz
gcc-923a8d0689917ec9b6b1faf88bc5f72140bf7f7e.tar.bz2
(HARD_REGNO_MODE_OK): Update comment.
From-SVN: r6593
-rw-r--r--gcc/config/sparc/sparc.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h
index 01d04be..a033564 100644
--- a/gcc/config/sparc/sparc.h
+++ b/gcc/config/sparc/sparc.h
@@ -396,9 +396,7 @@ extern int hard_regno_nregs[];
extern int hard_regno_mode_ok[FIRST_PSEUDO_REGISTER];
/* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
- On SPARC, the cpu registers can hold any mode but the float registers
- can only hold SFmode or DFmode. See sparc.c for how we
- initialize this. */
+ See sparc.c for how we initialize this. */
#define HARD_REGNO_MODE_OK(REGNO, MODE) \
((hard_regno_mode_ok[REGNO] & (1<<(int)(MODE))) != 0)