diff options
author | bernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-25 17:57:24 +0000 |
---|---|---|
committer | bernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-25 17:57:24 +0000 |
commit | e916c70c82273fa3a68a7a763450185a467ea0a2 (patch) | |
tree | 6f26ca609f256828ce2146879b8488b97aa20f40 /gcc/reg-stack.c | |
parent | 5c5069aa140a544adadbb58452d167baf3f991ea (diff) | |
download | gcc-e916c70c82273fa3a68a7a763450185a467ea0a2.tar.gz |
* c-common.c: Rename all identifiers named `class' to `cl'.
* c-decl.c: Likewise.
* c-common.h: Likewise.
* c-parse.in: Likewise.
* c-typeck.c: Likewise.
* genmodes.c: Likewise.
* real.c: Likewise.
* real.h: Likewise.
* recog.c: Likewise.
* recog.h: Likewise.
* regrename.c: Likewise.
* tree.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85153 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r-- | gcc/reg-stack.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index 5eb253ffe0f..e21f11bbcc4 100644 --- a/gcc/reg-stack.c +++ b/gcc/reg-stack.c @@ -667,7 +667,7 @@ check_asm_stack_operands (rtx insn) for (i = 0; i < n_outputs; i++) if (STACK_REG_P (recog_data.operand[i])) { - if (reg_class_size[(int) recog_op_alt[i][alt].class] != 1) + if (reg_class_size[(int) recog_op_alt[i][alt].cl] != 1) { error_for_asm (insn, "output constraint %d must specify a single register", i); malformed_asm = 1; @@ -2147,9 +2147,9 @@ subst_asm_stack_regs (rtx insn, stack regstack) for (i = n_outputs; i < n_outputs + n_inputs; i++) if (STACK_REG_P (recog_data.operand[i]) - && reg_class_subset_p (recog_op_alt[i][alt].class, + && reg_class_subset_p (recog_op_alt[i][alt].cl, FLOAT_REGS) - && recog_op_alt[i][alt].class != FLOAT_REGS) + && recog_op_alt[i][alt].cl != FLOAT_REGS) { /* If an operand needs to be in a particular reg in FLOAT_REGS, the constraint was either 't' or 'u'. Since |