]> git.sur5r.net Git - cc65/commitdiff
Renaming and cleanup
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 29 Jun 2004 20:37:18 +0000 (20:37 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 29 Jun 2004 20:37:18 +0000 (20:37 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3137 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/codegen.c
src/cc65/datatype.c
src/cc65/preproc.c
src/cc65/scanner.c

index 14297e92816d0644a04eb9350989bec9cd498010..07bbf6a23d0bf2f3a64a5dca69ff71847f573fe3 100644 (file)
@@ -1410,7 +1410,7 @@ void g_scale (unsigned flags, long val)
     } else if (val > 0) {
 
        /* Scale up */
-       if ((p2 = powerof2 (val)) > 0 && p2 <= 4) {
+       if ((p2 = PowerOf2 (val)) > 0 && p2 <= 4) {
 
                    /* Factor is 2, 4, 8 and 16, use special function */
            switch (flags & CF_TYPE) {
@@ -1465,7 +1465,7 @@ void g_scale (unsigned flags, long val)
 
        /* Scale down */
        val = -val;
-       if ((p2 = powerof2 (val)) > 0 && p2 <= 4) {
+       if ((p2 = PowerOf2 (val)) > 0 && p2 <= 4) {
 
            /* Factor is 2, 4, 8 and 16 use special function */
            switch (flags & CF_TYPE) {
@@ -2600,7 +2600,7 @@ void g_mul (unsigned flags, unsigned long val)
     int p2;
 
     /* Do strength reduction if the value is constant and a power of two */
-    if (flags & CF_CONST && (p2 = powerof2 (val)) >= 0) {
+    if (flags & CF_CONST && (p2 = PowerOf2 (val)) >= 0) {
        /* Generate a shift instead */
        g_asl (flags, p2);
        return;
@@ -2709,7 +2709,7 @@ void g_div (unsigned flags, unsigned long val)
 
     /* Do strength reduction if the value is constant and a power of two */
     int p2;
-    if ((flags & CF_CONST) && (p2 = powerof2 (val)) >= 0) {
+    if ((flags & CF_CONST) && (p2 = PowerOf2 (val)) >= 0) {
        /* Generate a shift instead */
        g_asr (flags, p2);
     } else {
@@ -2737,7 +2737,7 @@ void g_mod (unsigned flags, unsigned long val)
     int p2;
 
     /* Check if we can do some cost reduction */
-    if ((flags & CF_CONST) && (flags & CF_UNSIGNED) && val != 0xFFFFFFFF && (p2 = powerof2 (val)) >= 0) {
+    if ((flags & CF_CONST) && (flags & CF_UNSIGNED) && val != 0xFFFFFFFF && (p2 = PowerOf2 (val)) >= 0) {
        /* We can do that with an AND operation */
        g_and (flags, val - 1);
     } else {
index 93746b4df1988d74ca1278f48fc7891a56388a32..979e3e13870ab33aacf3046a953b80778502b44f 100644 (file)
@@ -45,7 +45,6 @@
 #include "error.h"
 #include "funcdesc.h"
 #include "global.h"
-#include "util.h"
 #include "symtab.h"
 
 
index 28232208560862595182cb723a81e25db89defb0..034460598e811ce761f9e27f8bfe51acb9fcdb21 100644 (file)
@@ -1,9 +1,9 @@
-/* 
+/*
  * C pre-processor functions.
- * Portions of this code are copyright (C) 1989 John R. Dunning.  
+ * Portions of this code are copyright (C) 1989 John R. Dunning.
  * See copyleft.jrd for license information.
  */
-   
+
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
@@ -29,7 +29,6 @@
 #include "preproc.h"
 #include "scanner.h"
 #include "standard.h"
-#include "util.h"
 
 
 
index 52d2930d965b9a3d215306aea06975c28e84abf7..435875800394cd44845bbd33c582a4bc902064ff 100644 (file)
@@ -57,7 +57,6 @@
 #include "scanner.h"
 #include "standard.h"
 #include "symtab.h"
-#include "util.h"