summaryrefslogtreecommitdiff
path: root/gcc/varasm.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-04-28 19:47:05 -0700
committerYamaArashi <shadow962@live.com>2016-04-28 19:47:05 -0700
commitf821b74fc8baaaea80e42fe54fb9e7765f89bfff (patch)
treed94df970642b064dc2ae7903eeadaad825292c9b /gcc/varasm.c
parent5ee708b8adfcb95345187aed24c66b9053a1f15f (diff)
remove defaults.h
Diffstat (limited to 'gcc/varasm.c')
-rwxr-xr-xgcc/varasm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c
index 45d36dd..9dbb277 100755
--- a/gcc/varasm.c
+++ b/gcc/varasm.c
@@ -38,7 +38,6 @@ Boston, MA 02111-1307, USA. */
#include "output.h"
#include "hard-reg-set.h"
#include "regs.h"
-#include "defaults.h"
#include "real.h"
#include "toplev.h"
#include "obstack.h"
@@ -3983,7 +3982,7 @@ declare_weak (decl)
error_with_decl (decl, "weak declaration of `%s' must be public");
else if (TREE_ASM_WRITTEN (decl))
error_with_decl (decl, "weak declaration of `%s' must precede definition");
- else if (SUPPORTS_WEAK)
+ else
DECL_WEAK (decl) = 1;
}