diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2009-06-26 19:05:22 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2009-06-26 12:05:22 -0700 |
commit | a35120a3c6bc526325a727a4b71317bce11d1ca7 (patch) | |
tree | 25dbe8c2f990e92b896ad58e9deb8f647009aadc /gcc/c-decl.c | |
parent | 39ac02d7c9026fcbb1c271ca8b382183acea50e3 (diff) | |
download | gcc-a35120a3c6bc526325a727a4b71317bce11d1ca7.tar.gz |
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.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 5eab454e03d..9f852fff77a 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. */ |