diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1992-07-28 14:04:45 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1992-07-28 14:04:45 +0000 |
commit | 2e7bfcec12bd44b4ea4851937960544a73b491ff (patch) | |
tree | dbea5101096d745bf77f77eb868b340f23a44003 | |
parent | 84b18070cc60a6d6810ede388904a0d197f4babb (diff) | |
download | gcc-2e7bfcec12bd44b4ea4851937960544a73b491ff.zip gcc-2e7bfcec12bd44b4ea4851937960544a73b491ff.tar.gz gcc-2e7bfcec12bd44b4ea4851937960544a73b491ff.tar.bz2 |
Fix comment
From-SVN: r1704
-rw-r--r-- | gcc/config/mips/mips.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index c0bf947..307abbf 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -1301,8 +1301,8 @@ enum reg_class { 0x00000000, 0x00000000, 0x00000000 }, /* no registers */ \ { 0xffffffff, 0x00000000, 0x00000000 }, /* integer registers */ \ { 0x00000000, 0xffffffff, 0x00000000 }, /* floating registers*/ \ - { 0x00000000, 0x00000000, 0x00000001 }, /* lo register */ \ - { 0x00000000, 0x00000000, 0x00000002 }, /* hi register */ \ + { 0x00000000, 0x00000000, 0x00000001 }, /* hi register */ \ + { 0x00000000, 0x00000000, 0x00000002 }, /* lo register */ \ { 0x00000000, 0x00000000, 0x00000003 }, /* mul/div registers */ \ { 0x00000000, 0x00000000, 0x00000004 }, /* status registers */ \ { 0xffffffff, 0xffffffff, 0x00000007 } /* all registers */ \ |