diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-12-27 20:26:58 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-12-27 20:26:58 +0000 |
commit | 71ae71576187eacf7ee6dea7751abc9202b7e687 (patch) | |
tree | e12cfca9bfd503bcc66e2c1653ee29286697f573 /gcc/integrate.h | |
parent | 359675d603b0b42e3157e0f7efa00e45eac2a866 (diff) | |
download | gcc-71ae71576187eacf7ee6dea7751abc9202b7e687.tar.gz |
(struct inline_remap): New fields regno_pointer_flag and
regno_pointer_align.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@10876 138bc75d-0d04-0410-961f-82ee72b054a4
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 2b14f88d67d..b2acf5e5c1d 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; |