From fe18709a017c7142452df242f060eea4d1b4ed34 Mon Sep 17 00:00:00 2001 From: notaz Date: Sat, 1 Mar 2014 21:52:26 +0200 Subject: [PATCH] translate: extra check --- tools/translate.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/translate.c b/tools/translate.c index ce55bf9..f22cb1d 100644 --- a/tools/translate.c +++ b/tools/translate.c @@ -467,7 +467,7 @@ static int guess_lmod_from_c_type(enum opr_lenmod *lmod, "LONG", "HIMC", }; static const char *word_types[] = { - "uint16_t", "int16_t", "_WORD", + "uint16_t", "int16_t", "_WORD", "WORD", "unsigned __int16", "__int16", }; static const char *byte_types[] = { @@ -3172,6 +3172,8 @@ tailcall: // indirect call pp_c = resolve_icall(i, opcnt, &l); if (pp_c != NULL) { + if (!pp_c->is_func && !pp_c->is_fptr) + ferr(po, "call to non-func: %s\n", pp_c->name); pp = proto_clone(pp_c); my_assert_not(pp, NULL); if (l) -- 2.39.2