Added two peepholes that simplify conditional jumps
[fw/sdcc] / src / pic / pcoderegs.h
index c37d72f4c544f1184984c9108b7f3442408b1a1d..cd26f4f78239e6712eaf0b55ee69462b443aa4cc 100644 (file)
@@ -32,9 +32,9 @@
 **************************************************/
 
 typedef struct pCodeRegLives {
-  set *usedpFlows;       /* set of pFlow objects that use this register */
-  set *assignedpFlows;   /* set of pFlow objects that assign values to this register */
-  set *usedpCodes;       /* set of all instructions that use this register */
+       set *usedpFlows;       /* set of pFlow objects that use this register */
+       set *assignedpFlows;   /* set of pFlow objects that assign values to this register */
+       set *usedpCodes;       /* set of all instructions that use this register */
 
 } pCodeRegLives;