diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2008-07-16 17:55:42 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2008-07-16 17:55:42 +0000 |
commit | 48c5422943175e257c75cd80ccc78ba63f76a3ea (patch) | |
tree | 082bfe0730bc1523dda8ece43db227bc392857ea /gcc/reload.h | |
parent | 55d796dacbdfb6133311e06027360066c0fce95f (diff) | |
download | gcc-48c5422943175e257c75cd80ccc78ba63f76a3ea.tar.gz |
c-pch.c (get_ident): Avoid C++ keywords.
* c-pch.c (get_ident): Avoid C++ keywords.
* combine-stack-adj.c (single_set_for_csa): Likewise.
* final.c (asm_insn_count, final_scan_insn, alter_subreg,
output_asm_insn): Likewise.
* reload.c (push_secondary_reload, find_reusable_reload,
push_reload, combine_reloads, find_reloads,
debug_reload_to_stream): Likewise.
* reload.h (struct reload): Likewise.
* reload1.c (reload_reg_class_lower, find_reg, find_reload_regs,
allocate_reload_reg, choose_reload_regs, emit_input_reload_insns,
emit_output_reload_insns): Likewise.
* targhooks.c (default_secondary_reload): Likewise.
* varasm.c (section_entry_eq, object_block_entry_eq): Likewise.
From-SVN: r137895
Diffstat (limited to 'gcc/reload.h')
-rw-r--r-- | gcc/reload.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reload.h b/gcc/reload.h index bfa7e6a8996..3873f5c9746 100644 --- a/gcc/reload.h +++ b/gcc/reload.h @@ -83,7 +83,7 @@ struct reload rtx out; /* The class of registers to reload into. */ - enum reg_class class; + enum reg_class rclass; /* The mode this operand should have when reloaded, on input. */ enum machine_mode inmode; |