]> gcc.gnu.org Git - gcc.git/commitdiff
regs.h (regno_pointer_align, [...]): Delete from here...
authorRichard Earnshaw <erich@gnu.org>
Wed, 31 Jan 1996 14:45:20 +0000 (14:45 +0000)
committerRichard Earnshaw <erich@gnu.org>
Wed, 31 Jan 1996 14:45:20 +0000 (14:45 +0000)
* 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

gcc/regs.h
gcc/rtl.h

index c26528d05742c4158cdefb4f01f040b6dd4cf612..fe0d1ac1af1a7588b3ac1196e6438c8f237d4698 100644 (file)
@@ -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;
index 8d23a6bf1171beacf568003a20cd0763222125ce..998d9ba615688b6c93d94c3390c19577f1b55441 100644 (file)
--- 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.  */
This page took 0.06413 seconds and 5 git commands to generate.