diff options
author | Richard Biener <rguenther@suse.de> | 2013-01-10 13:58:51 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2013-01-10 13:58:51 +0000 |
commit | ad2e5b71299d16f02eab3600e2ab28665d4aa363 (patch) | |
tree | 6564c50e5a001aee3b782765b654fac1563c39f5 /gcc/builtins.c | |
parent | d02a9a19d6251c29b4b6dd9d50871325504029e9 (diff) | |
download | gcc-ad2e5b71299d16f02eab3600e2ab28665d4aa363.zip gcc-ad2e5b71299d16f02eab3600e2ab28665d4aa363.tar.gz gcc-ad2e5b71299d16f02eab3600e2ab28665d4aa363.tar.bz2 |
builtins.c (expand_builtin_init_trampoline): Use set_mem_attributes.
2013-01-10 Richard Biener <rguenther@suse.de>
* builtins.c (expand_builtin_init_trampoline): Use
set_mem_attributes.
From-SVN: r195086
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 2b615a1..8ae4988 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -4853,8 +4853,7 @@ expand_builtin_init_trampoline (tree exp, bool onstack) within the local function's FRAME decl. Either way, let's see if we can fill in the MEM_ATTRs for this memory. */ if (TREE_CODE (t_tramp) == ADDR_EXPR) - set_mem_attributes_minus_bitpos (m_tramp, TREE_OPERAND (t_tramp, 0), - true, 0); + set_mem_attributes (m_tramp, TREE_OPERAND (t_tramp, 0), true); /* Creator of a heap trampoline is responsible for making sure the address is aligned to at least STACK_BOUNDARY. Normally malloc |