]> git.sur5r.net Git - cc65/blobdiff - src/cc65/codeopt.h
Fixed handling of function definitions with an empty parameter list. According
[cc65] / src / cc65 / codeopt.h
index 15960a99fb555488e6741021582a029daf6a3971..4ee2626aae0b752941de5b432d70962015bd671e 100644 (file)
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                          Code                                    */
 /*****************************************************************************/
 
 
 
-/*****************************************************************************/
-/*                                          Code                                    */
-/*****************************************************************************/
+void DisableOpt (const char* Name);
+/* Disable the optimization with the given name */
 
+void EnableOpt (const char* Name);
+/* Enable the optimization with the given name */
 
+void ListOptSteps (FILE* F);
+/* List all optimization steps */
 
 void RunOpt (CodeSeg* S);
 /* Run the optimizer */