aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@arm.com>2021-10-13 09:16:53 +0000
committerChristophe Lyon <christophe.lyon@foss.st.com>2022-02-22 15:55:09 +0000
commite9f8443a9179c0e9e0d96dfa91c883d6ddb70d3b (patch)
tree06552727c2587b8fb954552e3f9da56c5b18ec83
parentc6b4ea7ab1aa6c5c07798fa6c6ad15dd1761b5ed (diff)
downloadgcc-e9f8443a9179c0e9e0d96dfa91c883d6ddb70d3b.zip
gcc-e9f8443a9179c0e9e0d96dfa91c883d6ddb70d3b.tar.gz
gcc-e9f8443a9179c0e9e0d96dfa91c883d6ddb70d3b.tar.bz2
arm: Add VPR_REG to ALL_REGS
VPR_REG should be part of ALL_REGS, this patch fixes this omission. Most of the work of this patch series was carried out while I was working at STMicroelectronics as a Linaro assignee. 2022-02-22 Christophe Lyon <christophe.lyon@arm.com> gcc/ * config/arm/arm.h (REG_CLASS_CONTENTS): Add VPR_REG to ALL_REGS.
-rw-r--r--gcc/config/arm/arm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h
index 61c0221..ef7b66f 100644
--- a/gcc/config/arm/arm.h
+++ b/gcc/config/arm/arm.h
@@ -1347,7 +1347,7 @@ enum reg_class
{ 0x00000000, 0x00000000, 0x00000000, 0x00000080 }, /* AFP_REG */ \
{ 0x00000000, 0x00000000, 0x00000000, 0x00000400 }, /* VPR_REG. */ \
{ 0x00005FFF, 0x00000000, 0x00000000, 0x00000400 }, /* GENERAL_AND_VPR_REGS. */ \
- { 0xFFFF7FFF, 0xFFFFFFFF, 0xFFFFFFFF, 0x0000000F } /* ALL_REGS. */ \
+ { 0xFFFF7FFF, 0xFFFFFFFF, 0xFFFFFFFF, 0x0000040F } /* ALL_REGS. */ \
}
#define FP_SYSREGS \