prevent a warning
[fw/sdcc] / src / SDCCglobl.h
index b83b5282fa4d90f7dfa15d47672889ffd8e17b01..b887e795ccb1873be4bf4604e84683a3b5ea730e 100644 (file)
@@ -214,9 +214,10 @@ struct options
     char *out_name;            /* Asm output name for c1 mode */
     int nostdlib;              /* Don't use standard lib files */
     int nostdinc;              /* Don't use standard include files */
+    int noRegParams;            /* Disable passing some parameters in registers */
     int verbose;               /* Show what the compiler is doing */
     int shortis8bits;           /* treat short like int or char */
-
+    int profile;                /* Turn on extra profiling information */
     char *calleeSaves[128];    /* list of functions using callee save */
     char *excludeRegs[32];     /* registers excluded from saving */
 
@@ -259,8 +260,9 @@ extern int nrelFiles;
 extern char *relFiles[128];
 extern char *libFiles[128];
 extern int nlibFiles;
-extern int nlibPaths;
 extern char *libPaths[128];
+extern int nlibPaths;
+
 extern bool verboseExec ;
 
 void parseWithComma (char **, char *);