From fa4c560cc161df93964de3bdd27699b8ffa1eaa7 Mon Sep 17 00:00:00 2001 From: Jens Maus Date: Tue, 10 Jan 2017 10:42:37 +0100 Subject: [PATCH] bumped the maximum number of max_recog_operands to 20 (19+1) to support larger asm constructs (e.g. LP11() in inline/macros.h). This refs cahirwpz/amigaos-cross-toolchain#75. --- gcc/genconfig.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/genconfig.c b/gcc/genconfig.c index 7021b97..739b098 100644 --- a/gcc/genconfig.c +++ b/gcc/genconfig.c @@ -327,8 +327,8 @@ main (argc, argv) printf ("/* Generated automatically by the program `genconfig'\n\ from the machine description file `md'. */\n\n"); - /* Allow at least 15 operands for the sake of asm constructs. */ - max_recog_operands = 14; /* We will add 1 later. */ + /* Allow at least 20 operands for the sake of asm constructs. */ + max_recog_operands = 19; /* We will add 1 later. */ max_dup_operands = 1; /* Read the machine description. */