From 962ab2e80331f58a94d0e58e244280fed160e72e Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Fri, 21 Nov 2008 10:17:16 +0000 Subject: [PATCH] reduce not supported error to a warning [r23876] --- ast2firm.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ast2firm.c b/ast2firm.c index a6fdfb1..7884d24 100644 --- a/ast2firm.c +++ b/ast2firm.c @@ -4777,9 +4777,8 @@ static void asm_statement_to_firm(const asm_statement_t *statement) = be_parse_asm_constraints(constraints); if (asm_flags & ASM_CONSTRAINT_FLAG_NO_SUPPORT) { - errorf(&statement->base.source_position, + warningf(&statement->base.source_position, "some constraints in '%s' are not supported", constraints); - continue; } if (asm_flags & ASM_CONSTRAINT_FLAG_INVALID) { errorf(&statement->base.source_position, -- 2.20.1