* rtl.h (RTL_CHECKC2): Fix typo in last change.

From-SVN: r29090
This commit is contained in:
Mark Mitchell 1999-09-03 22:54:56 +00:00 committed by Mark Mitchell
parent 83ab38394c
commit 818a3b1591
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri Sep 3 15:49:56 1999 Mark Mitchell <mark@codesourcery.com>
* rtl.h (RTL_CHECKC2): Fix typo in last change.
Fri Sep 3 15:13:34 1999 Richard Henderson <rth@cygnus.com>
* flow.c (propagate_block): Use XEXP not SET_DEST for a USE.

View File

@ -294,7 +294,7 @@ extern void rtvec_check_failed_bounds PROTO((rtvec, int,
#define RTL_CHECK1(RTX, N, C1) ((RTX)->fld[N])
#define RTL_CHECK2(RTX, N, C1, C2) ((RTX)->fld[N])
#define RTL_CHECKC1(RTX, N, C) ((RTX)->fld[N])
#define RTL_CHECKC2(RTX, N, C1, C1) ((RTX)->fld[N])
#define RTL_CHECKC2(RTX, N, C1, C2) ((RTX)->fld[N])
#define RTVEC_ELT(RTVEC, I) ((RTVEC)->elem[I])
#endif