diff options
author | Jan-Benedict Glaw <jbglaw@lug-owl.de> | 2013-11-20 10:03:53 +0000 |
---|---|---|
committer | Jan-Benedict Glaw <jbglaw@gcc.gnu.org> | 2013-11-20 10:03:53 +0000 |
commit | d6e193b3e4809f3b3d309819566fa4ee5b837636 (patch) | |
tree | e88d7cb2c2273dbdd11655c5298271a7fc49fd33 | |
parent | b5828b4bf68ebdc3649853f7f0944a49ea71101d (diff) | |
download | gcc-d6e193b3e4809f3b3d309819566fa4ee5b837636.zip gcc-d6e193b3e4809f3b3d309819566fa4ee5b837636.tar.gz gcc-d6e193b3e4809f3b3d309819566fa4ee5b837636.tar.bz2 |
mips.c (r10k_simplify_address): Eliminate macro usage.
2013-11-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* config/mips/mips.c (r10k_simplify_address): Eliminate macro usage.
[BR]: http://gcc.gnu.org/ml/gcc-patches/2013-11/msg02455.html
From-SVN: r205094
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mips/mips.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e323a39..e36c825 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-11-20 Jan-Benedict Glaw <jbglaw@lug-owl.de> + + * config/mips/mips.c (r10k_simplify_address): Eliminate macro usage. + 2013-11-20 James Greenhalgh <james.greenhalgh@arm.com> * gcc/config/aarch64/aarch64-builtins.c diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 82ca719..d06d574 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -14842,7 +14842,7 @@ r10k_simplify_address (rtx x, rtx insn) /* Replace the incoming value of $sp with virtual_incoming_args_rtx. */ if (x == stack_pointer_rtx - && DF_REF_BB (def) == ENTRY_BLOCK_PTR) + && DF_REF_BB (def) == ENTRY_BLOCK_PTR_FOR_FN (cfun)) newx = virtual_incoming_args_rtx; } else if (dominated_by_p (CDI_DOMINATORS, DF_REF_BB (use), |