diff options
author | YamaArashi <shadow962@live.com> | 2016-02-14 19:26:29 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-14 19:26:29 -0800 |
commit | 62f1c8373a074a7ffb3d0f7458803bf0b07e626e (patch) | |
tree | 32045778cc5a8458ba8ded51dfd79356fbff9d9d /gcc/output.h | |
parent | abcd805cb77cfcfe0b5f911b784610983750a0b2 (diff) |
remove PIC (non-working and disabled)
Diffstat (limited to 'gcc/output.h')
-rwxr-xr-x | gcc/output.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gcc/output.h b/gcc/output.h index 227da4c..e5178db 100755 --- a/gcc/output.h +++ b/gcc/output.h @@ -446,14 +446,6 @@ extern char *current_function_name; extern rtx current_function_return_rtx; #endif -/* Nonzero means generate position-independent code. - This is not fully implemented yet. */ - -extern int flag_pic; - -/* This is nonzero if the current function uses pic_offset_table_rtx. */ -extern int current_function_uses_pic_offset_table; - /* This is nonzero if the current function uses the constant pool. */ extern int current_function_uses_const_pool; @@ -481,7 +473,7 @@ extern FILE *rtl_dump_file; && DECL_INITIAL (DECL) \ && (DECL_INITIAL (DECL) == error_mark_node \ || TREE_CONSTANT (DECL_INITIAL (DECL))) \ - && ! (RELOC && (flag_pic || DECL_ONE_ONLY (DECL)))) + && ! (RELOC && (DECL_ONE_ONLY (DECL)))) /* User label prefix in effect for this compilation. */ extern char *user_label_prefix; |