From 2f27b9307d89404a868d5a2cf274c80703952b9a Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Tue, 7 Sep 2021 13:21:08 -0700 Subject: decl: Include location for _Complex/_Atomic error messages --- decl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/decl.c b/decl.c index a0e68b0..3aa720a 100644 --- a/decl.c +++ b/decl.c @@ -332,10 +332,10 @@ declspecs(struct scope *s, enum storageclass *sc, enum funcspec *fs, int *align) next(); break; case T_COMPLEX: - fatal("_Complex is not yet supported"); + error(&tok.loc, "_Complex is not yet supported"); break; case T_ATOMIC: - fatal("_Atomic is not yet supported"); + error(&tok.loc, "_Atomic is not yet supported"); break; case TSTRUCT: case TUNION: -- cgit v1.2.3