diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/varasm.c | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c45eb87..c3f8de6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-02-20 Mark Mitchell <mark@codesourcery.com> + + * varasm.c (initializer_constant_valid_p): Call + lang_expand_constant to simplify the constant. + 2000-02-20 Bruce Korb <bkorb@gnu.org> * fixinc/inclhack.def(stdio_va_list): diff --git a/gcc/varasm.c b/gcc/varasm.c index e71ba3a..992a3a3 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -4025,6 +4025,11 @@ initializer_constant_valid_p (value, endtype) tree value; tree endtype; { + /* Give the front-end a chance to convert VALUE to something that + looks more like a constant to the back-end. */ + if (lang_expand_constant) + value = (*lang_expand_constant) (value); + switch (TREE_CODE (value)) { case CONSTRUCTOR: |
