]> gcc.gnu.org Git - gcc.git/commitdiff
MIPS REGISTER_PREFIX definition
authorMatthew Fortune <matthew.fortune@imgtec.com>
Fri, 1 Aug 2014 14:46:25 +0000 (14:46 +0000)
committerMatthew Fortune <mpf@gcc.gnu.org>
Fri, 1 Aug 2014 14:46:25 +0000 (14:46 +0000)
gcc/

* config/mips/mips.h (REGISTER_PREFIX): Define macro.

From-SVN: r213484

gcc/ChangeLog
gcc/config/mips/mips.h

index 52e9ed4b50b36397b64b1482eb6bfe2de9370b21..57b702e4cc96b19c6fbc70720065e0d176fd5eb4 100644 (file)
@@ -1,3 +1,7 @@
+2014-08-01  Matthew Fortune  <matthew.fortune@imgtec.com>
+
+       * config/mips/mips.h (REGISTER_PREFIX): Define macro.
+
 2014-08-01  James Greenhalgh  <james.greenhalgh@arm.com>
 
        PR regression/61510
index 1164b4b18085431d52fc0872eaa6f26e83e9e0b4..8d7a09fb7a98e8ccbe031f84642df3d9ccad0229 100644 (file)
@@ -1266,6 +1266,12 @@ struct mips_cpu_info {
 /* By default, turn on GDB extensions.  */
 #define DEFAULT_GDB_EXTENSIONS 1
 
+/* Registers may have a prefix which can be ignored when matching
+   user asm and register definitions.  */
+#ifndef REGISTER_PREFIX
+#define REGISTER_PREFIX    "$"
+#endif
+
 /* Local compiler-generated symbols must have a prefix that the assembler
    understands.   By default, this is $, although some targets (e.g.,
    NetBSD-ELF) need to override this.  */
This page took 0.104482 seconds and 5 git commands to generate.