(twice unrolled GO_IF_HARD_REG_EQUAL): Add missing \.

From-SVN: r11329
This commit is contained in:
Doug Evans 1996-02-20 21:12:15 +00:00
parent cffa872980
commit a8526922fc
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ do { register HARD_REG_ELT_TYPE *scan_xp_ = (X), *scan_yp_ = (Y); \
#define GO_IF_HARD_REG_EQUAL(X,Y,TO) \
do { register HARD_REG_ELT_TYPE *scan_xp_ = (X), *scan_yp_ = (Y); \
if ((scan_xp_[0] == scan_yp_[0]) \
&& (scan_xp_[1] == scan_yp_[1]))
&& (scan_xp_[1] == scan_yp_[1])) \
goto TO; } while (0)
#else