diff options
author | Richard Henderson <rth@redhat.com> | 2001-08-19 02:04:31 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-08-19 02:04:31 -0700 |
commit | c49f511c7ee1814b7460dd88b6ddc5b1cb2dcb6c (patch) | |
tree | cd9edfb64832a5b890a6d315458341eb5f03e162 /gcc/function.c | |
parent | c45632b732c887f2d180b60e1094feaa72164973 (diff) | |
download | gcc-c49f511c7ee1814b7460dd88b6ddc5b1cb2dcb6c.zip gcc-c49f511c7ee1814b7460dd88b6ddc5b1cb2dcb6c.tar.gz gcc-c49f511c7ee1814b7460dd88b6ddc5b1cb2dcb6c.tar.bz2 |
* function.c (gen_mem_addressof): Don't call get_alias_set if no decl.
From-SVN: r45030
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index c2424fd..6c8a937 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -2863,7 +2863,7 @@ gen_mem_addressof (reg, decl) REGNO (reg), decl); /* Calculate this before we start messing with decl's RTL. */ - HOST_WIDE_INT set = get_alias_set (decl); + HOST_WIDE_INT set = decl ? get_alias_set (decl) : 0; /* If the original REG was a user-variable, then so is the REG whose address is being taken. Likewise for unchanging. */ |