]> gcc.gnu.org Git - gcc.git/commitdiff
(enum reg_class): Add new class GENERAL_FP_REGS.
authorJim Wilson <wilson@gcc.gnu.org>
Mon, 8 Jul 1996 23:41:43 +0000 (16:41 -0700)
committerJim Wilson <wilson@gcc.gnu.org>
Mon, 8 Jul 1996 23:41:43 +0000 (16:41 -0700)
(REG_CLASS_NAMES, REG_CLASS_CONTENTS): Likewise.

From-SVN: r12418

gcc/config/sh/sh.h

index 2a1e5048d5ece8608d582a163a2fd4d4920c9efb..90adbe655dd82ba38a2902ac0580dc5c940a1688 100644 (file)
@@ -464,6 +464,7 @@ enum reg_class
   FPUL_REGS,
   FP0_REGS,
   FP_REGS,
+  GENERAL_FP_REGS,
   ALL_REGS,
   LIM_REG_CLASSES
 };
@@ -482,6 +483,7 @@ enum reg_class
   "FPUL_REGS",         \
   "FP0_REGS",          \
   "FP_REGS",           \
+  "GENERAL_FP_REGS",   \
   "ALL_REGS",          \
 }
 
@@ -500,6 +502,7 @@ enum reg_class
   { 0x00400000, 0x00000000 }, /* FPUL_REGS     */      \
   { 0x01000000, 0x00000000 }, /* FP0_REGS      */      \
   { 0xFF000000, 0x000000FF }, /* FP_REGS       */      \
+  { 0xFF01FFFF, 0x000000FF }, /* GENERAL_FP_REGS */    \
   { 0xFF7FFFFF, 0x000000FF }, /* ALL_REGS      */      \
 }
 
This page took 0.071913 seconds and 5 git commands to generate.