]> git.sur5r.net Git - cc65/blobdiff - src/cc65/coptind.h
Adding functionality to StrBuf
[cc65] / src / cc65 / coptind.h
index a5bb5635b8c6cbc34392db819a3d5acdc4da5a31..04530f1941fb6118c2b1339a87e938c9bfa4ae09 100644 (file)
@@ -92,6 +92,12 @@ unsigned OptUnusedLoads (CodeSeg* S);
 unsigned OptDuplicateLoads (CodeSeg* S);
 /* Remove loads of registers where the value loaded is already in the register. */
 
+unsigned OptStoreLoad (CodeSeg* S);
+/* Remove a store followed by a load from the same location. */
+
+unsigned OptTransfers (CodeSeg* S);
+/* Remove transfers from one register to another and back */
+
 unsigned OptBranchDist (CodeSeg* S);
 /* Change branches for the distance needed. */