From cc3dea85a80afdd34f4e021a7d186e7dd384ca0c Mon Sep 17 00:00:00 2001 From: Richard Earnshaw Date: Wed, 4 Aug 1999 13:11:20 +0000 Subject: [PATCH] recog.c (preproces_constraints): Zero recog_op_alt before processing the constraints. * recog.c (preproces_constraints): Zero recog_op_alt before processing the constraints. From-SVN: r28497 --- gcc/ChangeLog | 5 +++++ gcc/recog.c | 1 + 2 files changed, 6 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 16e7c052176..ef9683cdf0e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 4 09:06:14 1999 Richard Earnshaw (rearnsha@arm.com) + + * recog.c (preproces_constraints): Zero recog_op_alt before + processing the constraints. + Mon Aug 2 19:18:44 1999 Jason Merrill * linux.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define. diff --git a/gcc/recog.c b/gcc/recog.c index 94e7abbffff..b20f80b7f67 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -2093,6 +2093,7 @@ preprocess_constraints () { int i; + bzero (recog_op_alt, sizeof recog_op_alt); for (i = 0; i < recog_n_operands; i++) { int j; -- 2.30.2