]> git.gag.com Git - fw/sdcc/commitdiff
added _JavaNative to debug info printing
authorsandeep <sandeep@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 24 Dec 2001 03:43:03 +0000 (03:43 +0000)
committersandeep <sandeep@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 24 Dec 2001 03:43:03 +0000 (03:43 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1730 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/SDCCsymt.c

index 1bc4c61009ae55dc8b74fe129995bf8b985436aa..dc7968d45b5911ecd00e76c3cba95014e06d35e7 100644 (file)
@@ -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))