blob: ec1b5fdfc0c599f1c3554bcef31698d0e4d331ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Include the Maverick Crunch registers in the GCC->DWARF2 register number
mapping. Without this, cc -g with maverick hardfloat fails.
Index: gcc-4.2.4/gcc/config/arm/arm.c
===================================================================
--- gcc-4.2.4.orig/gcc/config/arm/arm.c 2009-08-09 15:43:45.000000000 +0100
+++ gcc-4.2.4/gcc/config/arm/arm.c 2009-08-09 15:45:06.000000000 +0100
@@ -15330,6 +15330,9 @@
if (IS_FPA_REGNUM (regno))
return (TARGET_AAPCS_BASED ? 96 : 16) + regno - FIRST_FPA_REGNUM;
+ if (IS_CIRRUS_REGNUM (regno))
+ return 28 + regno - FIRST_CIRRUS_FP_REGNUM;
+
if (IS_VFP_REGNUM (regno))
return 64 + regno - FIRST_VFP_REGNUM;
|