diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-27 15:26:58 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-27 15:26:58 -0500 |
commit | 3051365e5660fa68a8f0672f9422b7823b0c2ac3 (patch) | |
tree | e12cfca9bfd503bcc66e2c1653ee29286697f573 /gcc/integrate.h | |
parent | 50874c8d007aa2bb4f421479a37b1f0f5738162e (diff) | |
download | gcc-3051365e5660fa68a8f0672f9422b7823b0c2ac3.zip gcc-3051365e5660fa68a8f0672f9422b7823b0c2ac3.tar.gz gcc-3051365e5660fa68a8f0672f9422b7823b0c2ac3.tar.bz2 |
(struct inline_remap): New fields regno_pointer_flag and
regno_pointer_align.
From-SVN: r10876
Diffstat (limited to 'gcc/integrate.h')
-rw-r--r-- | gcc/integrate.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/integrate.h b/gcc/integrate.h index 2b14f88..b2acf5e 100644 --- a/gcc/integrate.h +++ b/gcc/integrate.h @@ -1,5 +1,5 @@ /* Function integration definitions for GNU C-Compiler - Copyright (C) 1990 Free Software Foundation, Inc. + Copyright (C) 1990, 1995 Free Software Foundation, Inc. This file is part of GNU CC. @@ -93,6 +93,10 @@ struct inline_remap /* Likewise, this is the copied constraints vector. */ rtvec copy_asm_constraints_vector; + /* Indications for regs being pointers and their alignment. */ + char *regno_pointer_flag; + char *regno_pointer_align; + /* The next few fields are used for subst_constants to record the SETs that it saw. */ int num_sets; |