From 9ca5a9e86c8c1a14173658096157db78f3e68959 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 3 Dec 2012 11:36:14 +0900 Subject: [PATCH] Make aliasing an alias def an internal error. I haven't seen the bug message show up, so it seems safe, and is probably a good idea with what I have in mind. --- tools/qfcc/source/def.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/def.c b/tools/qfcc/source/def.c index a64ac5431..3d16fa020 100644 --- a/tools/qfcc/source/def.c +++ b/tools/qfcc/source/def.c @@ -154,7 +154,7 @@ alias_def (def_t *def, type_t *type) expr_t e; e.file = def->file; e.line = def->line; - bug (&e, "aliasing an alias def"); + internal_error (&e, "aliasing an alias def"); } ALLOC (16384, def_t, defs, alias); alias->return_addr = __builtin_return_address (0);