aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Earnshaw <erich@gnu.org>1996-01-31 14:45:20 +0000
committerRichard Earnshaw <erich@gnu.org>1996-01-31 14:45:20 +0000
commitaacd9b3f6f112599245209fc2f022810279250ed (patch)
treed57ba597dc64597229fd8519e5632af2c636103b /gcc
parent6692a31fda3b8b9032658826e048ccc66ad72dae (diff)
downloadgcc-aacd9b3f6f112599245209fc2f022810279250ed.zip
gcc-aacd9b3f6f112599245209fc2f022810279250ed.tar.gz
gcc-aacd9b3f6f112599245209fc2f022810279250ed.tar.bz2
regs.h (regno_pointer_align, [...]): Delete from here...
* regs.h (regno_pointer_align, REGNO_POINTER_ALIGN): Delete from here... * rtl.h (regno_pointer_align, REGNO_POINTER_ALIGN): ... and put them here. From-SVN: r11140
Diffstat (limited to 'gcc')
-rw-r--r--gcc/regs.h5
-rw-r--r--gcc/rtl.h5
2 files changed, 5 insertions, 5 deletions
diff --git a/gcc/regs.h b/gcc/regs.h
index c26528d..fe0d1ac 100644
--- a/gcc/regs.h
+++ b/gcc/regs.h
@@ -149,11 +149,6 @@ extern char *regno_pointer_flag;
#define REGNO_POINTER_FLAG(REGNO) regno_pointer_flag[REGNO]
extern int regno_pointer_flag_length;
-/* Similarly, contains the alignment in bytes for a register that contains
- a pointer, if known. */
-extern char *regno_pointer_align;
-#define REGNO_POINTER_ALIGN(REGNO) regno_pointer_align[REGNO]
-
/* List made of EXPR_LIST rtx's which gives pairs of pseudo registers
that have to go in the same hard reg. */
extern rtx regs_may_share;
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 8d23a6b..998d9ba 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -969,6 +969,11 @@ extern int cse_not_expected;
Allocated in parallel with regno_pointer_flag. */
extern rtx *regno_reg_rtx;
+/* Vector indexed by regno; contains the alignment in bytes for a
+ register that contains a pointer, if known. */
+extern char *regno_pointer_align;
+#define REGNO_POINTER_ALIGN(REGNO) regno_pointer_align[REGNO]
+
/* Translates rtx code to tree code, for those codes needed by
REAL_ARITHMETIC. The function returns an int because the caller may not
know what `enum tree_code' means. */