1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 20:29:34 +00:00

Renaming and cleanup

git-svn-id: svn://svn.cc65.org/cc65/trunk@3137 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-06-29 20:37:18 +00:00
parent e8afc897cf
commit 31f85bc23e
4 changed files with 8 additions and 11 deletions

View 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 {

View File

@ -45,7 +45,6 @@
#include "error.h"
#include "funcdesc.h"
#include "global.h"
#include "util.h"
#include "symtab.h"

View 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"

View File

@ -57,7 +57,6 @@
#include "scanner.h"
#include "standard.h"
#include "symtab.h"
#include "util.h"