diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2015-08-04 13:14:14 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2015-08-04 13:14:14 +0000 |
commit | c56df3e9242a222ecf82590cda160757e6bd18cf (patch) | |
tree | 303b07fa5b4d7f19351ddf2e020abc5638fb125a /gcc | |
parent | 29e8dc84842bd380804f21577035756c6abe468b (diff) | |
download | gcc-c56df3e9242a222ecf82590cda160757e6bd18cf.zip gcc-c56df3e9242a222ecf82590cda160757e6bd18cf.tar.gz gcc-c56df3e9242a222ecf82590cda160757e6bd18cf.tar.bz2 |
nvptx.h (struct nvptx_pseudo_info): Delete.
* config/nvptx/nvptx.h (struct nvptx_pseudo_info): Delete.
(machine_function): Remove pseudos field.
From-SVN: r226573
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/nvptx/nvptx.h | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a76cf03..41ccf74 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-08-04 Nathan Sidwell <nathan@codesourcery.com> + + * config/nvptx/nvptx.h (struct nvptx_pseudo_info): Delete. + (machine_function): Remove pseudos field. + 2015-08-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com> * config/aarch64/aarch64.c (aarch64_option_valid_attribute_p): diff --git a/gcc/config/nvptx/nvptx.h b/gcc/config/nvptx/nvptx.h index 502e43d..9cb46cc 100644 --- a/gcc/config/nvptx/nvptx.h +++ b/gcc/config/nvptx/nvptx.h @@ -217,12 +217,6 @@ struct nvptx_args { #define LEGITIMATE_PIC_OPERAND_P(X) 1 -struct nvptx_pseudo_info -{ - int true_size; - int renumber; -}; - #if defined HOST_WIDE_INT struct GTY(()) machine_function { @@ -231,7 +225,6 @@ struct GTY(()) machine_function tree funtype; bool has_call_with_varargs; bool has_call_with_sc; - struct GTY((skip)) nvptx_pseudo_info *pseudos; HOST_WIDE_INT outgoing_stdarg_size; int ret_reg_mode; int punning_buffer_size; |