aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-nested.c
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2007-01-02 18:50:33 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2007-01-02 18:50:33 +0000
commitbd94cb6ec8b9602ca60b47b37a1f39ace60018c7 (patch)
tree16497f3f7d5f4c242ea5e0918281c6bbae21fda4 /gcc/tree-nested.c
parent61465e7563e79c8ce885f11f98b3ab639ddb0700 (diff)
downloadgcc-bd94cb6ec8b9602ca60b47b37a1f39ace60018c7.zip
gcc-bd94cb6ec8b9602ca60b47b37a1f39ace60018c7.tar.gz
gcc-bd94cb6ec8b9602ca60b47b37a1f39ace60018c7.tar.bz2
alpha.md, [...]: Always use set_unique_reg_note to add REG_EQUAL notes.
* config/alpha/alpha.md, arm/arm.c, darwin.c, frv/frv.md, m32r/m32r.c, m32r/m32r.c, mn10300/mn10300.md, pa/pa.c, rs6000/rs6000.c, s390/s390.md, sh/sh.md, sparc/sparc.c: Always use set_unique_reg_note to add REG_EQUAL notes. From-SVN: r120353
Diffstat (limited to 'gcc/tree-nested.c')
-rw-r--r--gcc/tree-nested.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-nested.c b/gcc/tree-nested.c
index 0b78d0e..fdf39cc 100644
--- a/gcc/tree-nested.c
+++ b/gcc/tree-nested.c
@@ -183,7 +183,7 @@ build_addr (tree exp, tree context)
save_context = current_function_decl;
current_function_decl = context;
retval = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (exp)), exp);
- current_function_decl = save_context;;
+ current_function_decl = save_context;
return retval;
}