diff options
author | Richard Henderson <rth@cygnus.com> | 1999-09-11 18:51:28 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-09-11 18:51:28 -0700 |
commit | 1ccbefcef21836d354e28c07e92fe9a5b5eaedcd (patch) | |
tree | b5b69b2ec9f19fc214cfaa49317c6f80265bed44 /gcc/config/v850 | |
parent | 24bef15854919b1b36f74ea8208c71b146975a0b (diff) | |
download | gcc-1ccbefcef21836d354e28c07e92fe9a5b5eaedcd.zip gcc-1ccbefcef21836d354e28c07e92fe9a5b5eaedcd.tar.gz gcc-1ccbefcef21836d354e28c07e92fe9a5b5eaedcd.tar.bz2 |
Replace recog_foo with recog_data.foo.
From-SVN: r29349
Diffstat (limited to 'gcc/config/v850')
-rw-r--r-- | gcc/config/v850/v850.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/v850/v850.c b/gcc/config/v850/v850.c index a085b51..0b68ced 100644 --- a/gcc/config/v850/v850.c +++ b/gcc/config/v850/v850.c @@ -1959,24 +1959,24 @@ notice_update_cc (body, insn) case CC_NONE_0HIT: /* Insn does not change CC, but the 0'th operand has been changed. */ if (cc_status.value1 != 0 - && reg_overlap_mentioned_p (recog_operand[0], cc_status.value1)) + && reg_overlap_mentioned_p (recog_data.operand[0], cc_status.value1)) cc_status.value1 = 0; break; case CC_SET_ZN: - /* Insn sets the Z,N flags of CC to recog_operand[0]. + /* Insn sets the Z,N flags of CC to recog_data.operand[0]. V,C is in an unusable state. */ CC_STATUS_INIT; cc_status.flags |= CC_OVERFLOW_UNUSABLE | CC_NO_CARRY; - cc_status.value1 = recog_operand[0]; + cc_status.value1 = recog_data.operand[0]; break; case CC_SET_ZNV: - /* Insn sets the Z,N,V flags of CC to recog_operand[0]. + /* Insn sets the Z,N,V flags of CC to recog_data.operand[0]. C is in an unusable state. */ CC_STATUS_INIT; cc_status.flags |= CC_NO_CARRY; - cc_status.value1 = recog_operand[0]; + cc_status.value1 = recog_data.operand[0]; break; case CC_COMPARE: |