diff options
author | Mark Mitchell <mark@codesourcery.com> | 2000-06-15 18:24:04 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-06-15 18:24:04 +0000 |
commit | f5e6b7bc9e27420b063970b49bb62bcea1bff43d (patch) | |
tree | 677747ba8cd4a238abe3dcce5eb643d76d3c606c | |
parent | ffb1f63d81d9ce1667a9ab13344c058e463e198e (diff) | |
download | gcc-f5e6b7bc9e27420b063970b49bb62bcea1bff43d.zip gcc-f5e6b7bc9e27420b063970b49bb62bcea1bff43d.tar.gz gcc-f5e6b7bc9e27420b063970b49bb62bcea1bff43d.tar.bz2 |
* cp-tree.h (DECL_PENDING_INLINE_P): Relax checking.
From-SVN: r34567
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 6ddb758..77c788d 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2000-06-15 Mark Mitchell <mark@codesourcery.com> + + * cp-tree.h (DECL_PENDING_INLINE_P): Relax checking. + 2000-06-14 Benjamin Chelf <chelf@cabriolet.stanford.edu> * cp-tree.h (IF_COND): Move to c-common.h. diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index 9d5bb92..c11dc33 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -2317,7 +2317,7 @@ struct lang_decl the class definition. We have saved away the text of the function, but have not yet processed it. */ #define DECL_PENDING_INLINE_P(NODE) \ - (DECL_LANG_SPECIFIC (FUNCTION_DECL_CHECK (NODE))->decl_flags.pending_inline_p) + (DECL_LANG_SPECIFIC (NODE)->decl_flags.pending_inline_p) /* If DECL_PENDING_INLINE_P holds, this is the saved text of the function. */ |