aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-decl.c
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2009-06-26 19:05:22 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2009-06-26 12:05:22 -0700
commita35120a3c6bc526325a727a4b71317bce11d1ca7 (patch)
tree25dbe8c2f990e92b896ad58e9deb8f647009aadc /gcc/c-decl.c
parent39ac02d7c9026fcbb1c271ca8b382183acea50e3 (diff)
downloadgcc-a35120a3c6bc526325a727a4b71317bce11d1ca7.zip
gcc-a35120a3c6bc526325a727a4b71317bce11d1ca7.tar.gz
gcc-a35120a3c6bc526325a727a4b71317bce11d1ca7.tar.bz2
c-decl.c (merge_decls): Re-indent.
2009-06-26 H.J. Lu <hongjiu.lu@intel.com> * c-decl.c (merge_decls): Re-indent. From-SVN: r148984
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r--gcc/c-decl.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index 5eab454..9f852ff 100644
--- a/gcc/c-decl.c
+++ b/gcc/c-decl.c
@@ -2355,13 +2355,13 @@ merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
}
}
- extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
+ extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
- /* Merge the USED information. */
- if (TREE_USED (olddecl))
- TREE_USED (newdecl) = 1;
- else if (TREE_USED (newdecl))
- TREE_USED (olddecl) = 1;
+ /* Merge the USED information. */
+ if (TREE_USED (olddecl))
+ TREE_USED (newdecl) = 1;
+ else if (TREE_USED (newdecl))
+ TREE_USED (olddecl) = 1;
/* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
But preserve OLDDECL's DECL_UID and DECL_CONTEXT. */