]> git.sur5r.net Git - cc65/blobdiff - src/cc65/global.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / cc65 / global.c
index f644e51d4f297ca9c9534afdac1653e43c6a7436..a6d752b27aeb5029f30666d89db5f995304e7d33 100644 (file)
@@ -1,12 +1,12 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                global.c                                  */
+/*                                 global.c                                  */
 /*                                                                           */
-/*                Global variables for the cc65 C compiler                  */
+/*                 Global variables for the cc65 C compiler                  */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998-2011, Ullrich von Bassewitz                                      */
+/* (C) 1998-2012, Ullrich von Bassewitz                                      */
 /*                Roemerstrasse 52                                           */
 /*                D-70794 Filderstadt                                        */
 /* EMail:         uz@cc65.org                                                */
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
-unsigned char AddSource                = 0;    /* Add source lines as comments */
-unsigned char DebugInfo                = 0;    /* Add debug info to the obj */
+unsigned char AddSource         = 0;    /* Add source lines as comments */
+unsigned char DebugInfo         = 0;    /* Add debug info to the obj */
 unsigned char PreprocessOnly    = 0;    /* Just preprocess the input */
+unsigned char DebugOptOutput    = 0;    /* Output debug stuff */
 unsigned      RegisterSpace     = 6;    /* Space available for register vars */
 
 /* Stackable options */
@@ -58,10 +59,10 @@ IntStack RegVarsToCallStack = INTSTACK(0);  /* Save reg variables on call stack
 IntStack StaticLocals       = INTSTACK(0);  /* Make local variables static */
 IntStack SignedChars        = INTSTACK(0);  /* Make characters signed by default */
 IntStack CheckStack         = INTSTACK(0);  /* Generate stack overflow checks */
-IntStack Optimize                  = INTSTACK(0);  /* Optimize flag */
-IntStack CodeSizeFactor            = INTSTACK(100);/* Size factor for generated code */
+IntStack Optimize           = INTSTACK(0);  /* Optimize flag */
+IntStack CodeSizeFactor     = INTSTACK(100);/* Size factor for generated code */
 IntStack DataAlignment      = INTSTACK(1);  /* Alignment for data */
-                
+
 /* File names */
 StrBuf DepName     = STATIC_STRBUF_INITIALIZER; /* Name of dependencies file */
 StrBuf FullDepName = STATIC_STRBUF_INITIALIZER; /* Name of full dependencies file */