diff options
author | YamaArashi <shadow962@live.com> | 2016-04-25 02:51:34 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-04-25 02:51:34 -0700 |
commit | 346ed7678fc0a02c1c93c066140f819789f039d9 (patch) | |
tree | fdd46f22c809c5c44fdd7fb10070fd5320078b85 /gcc/varasm.c | |
parent | fa618cd10b1985bae42882f82346b646783892c6 (diff) |
remove driver and cpp
Diffstat (limited to 'gcc/varasm.c')
-rwxr-xr-x | gcc/varasm.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 906b272..c62cae0 100755 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -42,7 +42,6 @@ Boston, MA 02111-1307, USA. */ #include "real.h" #include "toplev.h" #include "obstack.h" -#include "c-pragma.h" #ifndef TRAMPOLINE_ALIGNMENT @@ -4087,25 +4086,9 @@ declare_weak (decl) /* Emit any pending weak declarations. */ -#ifdef HANDLE_PRAGMA_WEAK -struct weak_syms * weak_decls; -#endif - void weak_finish () { -#ifdef HANDLE_PRAGMA_WEAK - if (HANDLE_PRAGMA_WEAK) - { - struct weak_syms *t; - for (t = weak_decls; t; t = t->next) - { - ASM_WEAKEN_LABEL (asm_out_file, t->name); - if (t->value) - ASM_OUTPUT_DEF (asm_out_file, t->name, t->value); - } - } -#endif } void |