diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-04 13:32:39 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-04 13:32:39 +0000 |
commit | 997d68fef349f244932d14a82f06cbfe26e344f6 (patch) | |
tree | 6743f11e58bd7a933b08900d973d89026cd11c43 /gcc/integrate.h | |
parent | 68215e49a61b9179c353b5edd9b5796b04acdba0 (diff) | |
download | gcc-997d68fef349f244932d14a82f06cbfe26e344f6.tar.gz |
* Check in merge from gcc2. See ChangeLog.11 and ChangeLog.12
for details.
* haifa-sched.c: Mirror recent changes from gcc2.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18984 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/integrate.h')
-rw-r--r-- | gcc/integrate.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/integrate.h b/gcc/integrate.h index f0c46ff1ddc..23e2e561d94 100644 --- a/gcc/integrate.h +++ b/gcc/integrate.h @@ -1,5 +1,5 @@ /* Function integration definitions for GNU C-Compiler - Copyright (C) 1990, 1995 Free Software Foundation, Inc. + Copyright (C) 1990, 1995, 1998 Free Software Foundation, Inc. This file is part of GNU CC. @@ -126,8 +126,7 @@ extern void mark_stores PROTO((rtx, rtx)); extern rtx get_label_from_map PROTO((struct inline_remap *, int)); /* Set the label indicated. */ -#define set_label_in_map(map, i, x) \ - ((map)->label_map[i] = (x)) +#define set_label_in_map(MAP, I, X) ((MAP)->label_map[I] = (X)) /* Unfortunately, we need a global copy of const_equiv map for communication with a function called from note_stores. Be *very* careful that this |