This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Fix typo in REG_CLASS_NAMES in arm.h
- From: Ian Lance Taylor <ian at wasabisystems dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: 5 Feb 2004 01:11:57 -0500
- Subject: Fix typo in REG_CLASS_NAMES in arm.h
The recent patch to arm.h adding the VFP registers had a missing comma
in the definition of REG_CLASS_NAMES, causing two adjacent strings to
be merged into one. Fix committed as obvious.
Ian
2004-02-05 Ian Lance Taylor <ian@wasabisystems.com>
* config/arm/arm.h (REG_CLASS_NAMES): Add missing comma.
Index: config/arm/arm.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/arm/arm.h,v
retrieving revision 1.219
diff -p -u -r1.219 arm.h
--- config/arm/arm.h 4 Feb 2004 19:46:09 -0000 1.219
+++ config/arm/arm.h 5 Feb 2004 06:10:06 -0000
@@ -1346,7 +1346,7 @@ enum reg_class
"BASE_REGS", \
"HI_REGS", \
"CC_REG", \
- "VFPCC_REG" \
+ "VFPCC_REG", \
"GENERAL_REGS", \
"ALL_REGS", \
}