From: sandeep Date: Mon, 24 Dec 2001 03:43:03 +0000 (+0000) Subject: added _JavaNative to debug info printing X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=51a1b86316f0b3912a75a5906ef3cfa0d12e6606;p=fw%2Fsdcc added _JavaNative to debug info printing git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1730 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCsymt.c b/src/SDCCsymt.c index 1bc4c610..dc7968d4 100644 --- a/src/SDCCsymt.c +++ b/src/SDCCsymt.c @@ -1950,7 +1950,9 @@ printTypeChain (sym_link * start, FILE * of) switch (DCL_TYPE (type)) { case FUNCTION: - fprintf (of, "function %s", (IFFUNC_ISBUILTIN(type) ? "__builtin__" : " ")); + fprintf (of, "function %s %s", + (IFFUNC_ISBUILTIN(type) ? "__builtin__" : " "), + (IFFUNC_ISJAVANATIVE(type) ? "_JavaNative" : " ")); break; case GPOINTER: if (DCL_PTR_CONST (type))