Removed explicit usage of the 'register' keyword.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
feat/cmake_update
Michele Calgaro 4 years ago
parent 8a30d26ad4
commit 9d57e3ae1b
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -264,8 +264,8 @@ data_cache_lookup_nextmost_node_L (GslDataCache *dcache,
nodes -= 1; nodes -= 1;
do do
{ {
register gint cmp; gint cmp;
register guint i; guint i;
i = (n_nodes + 1) >> 1; i = (n_nodes + 1) >> 1;
check = nodes + i; check = nodes + i;

@ -2,7 +2,7 @@
#include <math.h> #include <math.h>
#define BUTTERFLY_XY(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,Wim) { \ #define BUTTERFLY_XY(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,Wim) { \
register double T1re, T1im, T2re, T2im; \ double T1re, T1im, T2re, T2im; \
T1re = X2re * Wre; \ T1re = X2re * Wre; \
T1im = X2im * Wre; \ T1im = X2im * Wre; \
T2re = X2im * Wim; \ T2re = X2im * Wim; \
@ -17,7 +17,7 @@
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_Yx(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,Wim) { \ #define BUTTERFLY_Yx(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,Wim) { \
register double T1re, T1im, T2re, T2im; \ double T1re, T1im, T2re, T2im; \
T1re = X2re * Wim; \ T1re = X2re * Wim; \
T1im = X2im * Wim; \ T1im = X2im * Wim; \
T2re = X2im * Wre; \ T2re = X2im * Wre; \
@ -32,7 +32,7 @@
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_yX(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,Wim) { \ #define BUTTERFLY_yX(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,Wim) { \
register double T1re, T1im, T2re, T2im; \ double T1re, T1im, T2re, T2im; \
T1re = X2re * Wim; \ T1re = X2re * Wim; \
T1im = X2im * Wim; \ T1im = X2im * Wim; \
T2re = X2im * Wre; \ T2re = X2im * Wre; \
@ -47,7 +47,7 @@
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_10(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \ #define BUTTERFLY_10(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \
register double T2re, T2im; \ double T2re, T2im; \
T2re = X1re - X2re; \ T2re = X1re - X2re; \
T2im = X1im - X2im; \ T2im = X1im - X2im; \
Y1re = X1re + X2re; \ Y1re = X1re + X2re; \
@ -56,7 +56,7 @@
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_01(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \ #define BUTTERFLY_01(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \
register double T2re, T2im; \ double T2re, T2im; \
T2re = X1re + X2im; \ T2re = X1re + X2im; \
T2im = X1im - X2re; \ T2im = X1im - X2re; \
Y1re = X1re - X2im; \ Y1re = X1re - X2im; \
@ -65,7 +65,7 @@
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_0m(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \ #define BUTTERFLY_0m(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \
register double T2re, T2im; \ double T2re, T2im; \
T2re = X1re - X2im; \ T2re = X1re - X2im; \
T2im = X1im + X2re; \ T2im = X1im + X2re; \
Y1re = X1re + X2im; \ Y1re = X1re + X2im; \
@ -74,7 +74,7 @@
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_XX(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,_2) { \ #define BUTTERFLY_XX(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,_2) { \
register double T1re, T1im, T2re, T2im; \ double T1re, T1im, T2re, T2im; \
T1re = X2re * Wre; \ T1re = X2re * Wre; \
T1im = X2im * Wre; \ T1im = X2im * Wre; \
T2re = T1im; \ T2re = T1im; \
@ -89,7 +89,7 @@
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_yY(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,_2) { \ #define BUTTERFLY_yY(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,_2) { \
register double T1re, T1im, T2re, T2im; \ double T1re, T1im, T2re, T2im; \
T1re = X2re * Wre; \ T1re = X2re * Wre; \
T1im = X2im * Wre; \ T1im = X2im * Wre; \
T2re = T1im; \ T2re = T1im; \
@ -104,7 +104,7 @@
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_10scale(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,S) { \ #define BUTTERFLY_10scale(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,S) { \
register double T2re, T2im; \ double T2re, T2im; \
T2re = X1re - X2re; \ T2re = X1re - X2re; \
T2im = X1im - X2im; \ T2im = X1im - X2im; \
Y1re = X1re + X2re; \ Y1re = X1re + X2re; \
@ -116,7 +116,7 @@
} }
#define WMULTIPLY(Wre,Wim,Dre,Dim) { \ #define WMULTIPLY(Wre,Wim,Dre,Dim) { \
register double T1re, T1im, T2re, T2im; \ double T1re, T1im, T2re, T2im; \
T1re = Wre * Dre; \ T1re = Wre * Dre; \
T1im = Wim * Dre; \ T1im = Wim * Dre; \
T2re = Wim * Dim; \ T2re = Wim * Dim; \
@ -224,8 +224,8 @@ bitreverse_fft2synthesis (const unsigned int n,
static void static void
gsl_power2_fft2analysis (const double *X, double *Y) gsl_power2_fft2analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -246,8 +246,8 @@ gsl_power2_fft2analysis (const double *X, double *Y)
static void static void
gsl_power2_fft4analysis_skip2 (const double *X, double *Y) gsl_power2_fft4analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -283,8 +283,8 @@ gsl_power2_fft4analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft4analysis (const double *X, double *Y) gsl_power2_fft4analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -313,8 +313,8 @@ gsl_power2_fft4analysis (const double *X, double *Y)
static void static void
gsl_power2_fft8analysis_skip2 (const double *X, double *Y) gsl_power2_fft8analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -406,8 +406,8 @@ gsl_power2_fft8analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft8analysis (const double *X, double *Y) gsl_power2_fft8analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -448,8 +448,8 @@ gsl_power2_fft8analysis (const double *X, double *Y)
static void static void
gsl_power2_fft16analysis_skip2 (const double *X, double *Y) gsl_power2_fft16analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -687,8 +687,8 @@ gsl_power2_fft16analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft16analysis (const double *X, double *Y) gsl_power2_fft16analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -751,8 +751,8 @@ gsl_power2_fft16analysis (const double *X, double *Y)
static void static void
gsl_power2_fft32analysis_skip2 (const double *X, double *Y) gsl_power2_fft32analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -1352,8 +1352,8 @@ gsl_power2_fft32analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft32analysis (const double *X, double *Y) gsl_power2_fft32analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -1458,8 +1458,8 @@ gsl_power2_fft32analysis (const double *X, double *Y)
static void static void
gsl_power2_fft64analysis_skip2 (const double *X, double *Y) gsl_power2_fft64analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -2051,8 +2051,8 @@ gsl_power2_fft64analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft64analysis (const double *X, double *Y) gsl_power2_fft64analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -2239,8 +2239,8 @@ gsl_power2_fft64analysis (const double *X, double *Y)
static void static void
gsl_power2_fft128analysis_skip2 (const double *X, double *Y) gsl_power2_fft128analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -3412,8 +3412,8 @@ gsl_power2_fft128analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft128analysis (const double *X, double *Y) gsl_power2_fft128analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -3443,8 +3443,8 @@ gsl_power2_fft128analysis (const double *X, double *Y)
static void static void
gsl_power2_fft256analysis_skip2 (const double *X, double *Y) gsl_power2_fft256analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -3573,8 +3573,8 @@ gsl_power2_fft256analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft256analysis (const double *X, double *Y) gsl_power2_fft256analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -3606,8 +3606,8 @@ gsl_power2_fft256analysis (const double *X, double *Y)
static void static void
gsl_power2_fft512analysis_skip2 (const double *X, double *Y) gsl_power2_fft512analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -3901,8 +3901,8 @@ gsl_power2_fft512analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft512analysis (const double *X, double *Y) gsl_power2_fft512analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -3936,8 +3936,8 @@ gsl_power2_fft512analysis (const double *X, double *Y)
static void static void
gsl_power2_fft1024analysis_skip2 (const double *X, double *Y) gsl_power2_fft1024analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4011,8 +4011,8 @@ gsl_power2_fft1024analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft1024analysis (const double *X, double *Y) gsl_power2_fft1024analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4048,8 +4048,8 @@ gsl_power2_fft1024analysis (const double *X, double *Y)
static void static void
gsl_power2_fft2048analysis_skip2 (const double *X, double *Y) gsl_power2_fft2048analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4165,8 +4165,8 @@ gsl_power2_fft2048analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft2048analysis (const double *X, double *Y) gsl_power2_fft2048analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4204,8 +4204,8 @@ gsl_power2_fft2048analysis (const double *X, double *Y)
static void static void
gsl_power2_fft4096analysis_skip2 (const double *X, double *Y) gsl_power2_fft4096analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4283,8 +4283,8 @@ gsl_power2_fft4096analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft4096analysis (const double *X, double *Y) gsl_power2_fft4096analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4324,8 +4324,8 @@ gsl_power2_fft4096analysis (const double *X, double *Y)
static void static void
gsl_power2_fft8192analysis_skip2 (const double *X, double *Y) gsl_power2_fft8192analysis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4405,8 +4405,8 @@ gsl_power2_fft8192analysis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft8192analysis (const double *X, double *Y) gsl_power2_fft8192analysis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4448,8 +4448,8 @@ gsl_power2_fft8192analysis (const double *X, double *Y)
static void static void
gsl_power2_fft2synthesis (const double *X, double *Y) gsl_power2_fft2synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4470,8 +4470,8 @@ gsl_power2_fft2synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft4synthesis_skip2 (const double *X, double *Y) gsl_power2_fft4synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4507,8 +4507,8 @@ gsl_power2_fft4synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft4synthesis (const double *X, double *Y) gsl_power2_fft4synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4537,8 +4537,8 @@ gsl_power2_fft4synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft8synthesis_skip2 (const double *X, double *Y) gsl_power2_fft8synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4630,8 +4630,8 @@ gsl_power2_fft8synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft8synthesis (const double *X, double *Y) gsl_power2_fft8synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4672,8 +4672,8 @@ gsl_power2_fft8synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft16synthesis_skip2 (const double *X, double *Y) gsl_power2_fft16synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4911,8 +4911,8 @@ gsl_power2_fft16synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft16synthesis (const double *X, double *Y) gsl_power2_fft16synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -4975,8 +4975,8 @@ gsl_power2_fft16synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft32synthesis_skip2 (const double *X, double *Y) gsl_power2_fft32synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -5576,8 +5576,8 @@ gsl_power2_fft32synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft32synthesis (const double *X, double *Y) gsl_power2_fft32synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -5682,8 +5682,8 @@ gsl_power2_fft32synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft64synthesis_skip2 (const double *X, double *Y) gsl_power2_fft64synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -6275,8 +6275,8 @@ gsl_power2_fft64synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft64synthesis (const double *X, double *Y) gsl_power2_fft64synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -6463,8 +6463,8 @@ gsl_power2_fft64synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft128synthesis_skip2 (const double *X, double *Y) gsl_power2_fft128synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -7636,8 +7636,8 @@ gsl_power2_fft128synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft128synthesis (const double *X, double *Y) gsl_power2_fft128synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -7667,8 +7667,8 @@ gsl_power2_fft128synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft256synthesis_skip2 (const double *X, double *Y) gsl_power2_fft256synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -7797,8 +7797,8 @@ gsl_power2_fft256synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft256synthesis (const double *X, double *Y) gsl_power2_fft256synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -7830,8 +7830,8 @@ gsl_power2_fft256synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft512synthesis_skip2 (const double *X, double *Y) gsl_power2_fft512synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -8125,8 +8125,8 @@ gsl_power2_fft512synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft512synthesis (const double *X, double *Y) gsl_power2_fft512synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -8160,8 +8160,8 @@ gsl_power2_fft512synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft1024synthesis_skip2 (const double *X, double *Y) gsl_power2_fft1024synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -8235,8 +8235,8 @@ gsl_power2_fft1024synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft1024synthesis (const double *X, double *Y) gsl_power2_fft1024synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -8272,8 +8272,8 @@ gsl_power2_fft1024synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft2048synthesis_skip2 (const double *X, double *Y) gsl_power2_fft2048synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -8389,8 +8389,8 @@ gsl_power2_fft2048synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft2048synthesis (const double *X, double *Y) gsl_power2_fft2048synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -8428,8 +8428,8 @@ gsl_power2_fft2048synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft4096synthesis_skip2 (const double *X, double *Y) gsl_power2_fft4096synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -8507,8 +8507,8 @@ gsl_power2_fft4096synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft4096synthesis (const double *X, double *Y) gsl_power2_fft4096synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -8548,8 +8548,8 @@ gsl_power2_fft4096synthesis (const double *X, double *Y)
static void static void
gsl_power2_fft8192synthesis_skip2 (const double *X, double *Y) gsl_power2_fft8192synthesis_skip2 (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */
@ -8629,8 +8629,8 @@ gsl_power2_fft8192synthesis_skip2 (const double *X, double *Y)
static void static void
gsl_power2_fft8192synthesis (const double *X, double *Y) gsl_power2_fft8192synthesis (const double *X, double *Y)
{ {
register unsigned int butterfly, block, offset; unsigned int butterfly, block, offset;
register double Wre, Wim; double Wre, Wim;
butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */ butterfly = block = offset = 0, Wre = Wim = 0.0; /* silence compiler */

@ -147,7 +147,7 @@ diff (guint m,
/* --- fft implementation --- */ /* --- fft implementation --- */
#define BUTTERFLY_XY(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,Wim) { \ #define BUTTERFLY_XY(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,Wre,Wim) { \
register double T1re, T1im, T2re, T2im; \ double T1re, T1im, T2re, T2im; \
T1re = X2re * Wre; \ T1re = X2re * Wre; \
T1im = X2im * Wre; \ T1im = X2im * Wre; \
T2re = X2im * Wim; \ T2re = X2im * Wim; \
@ -162,7 +162,7 @@ diff (guint m,
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_10(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \ #define BUTTERFLY_10(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \
register double T2re, T2im; \ double T2re, T2im; \
T2re = X1re - X2re; \ T2re = X1re - X2re; \
T2im = X1im - X2im; \ T2im = X1im - X2im; \
Y1re = X1re + X2re; \ Y1re = X1re + X2re; \
@ -171,7 +171,7 @@ diff (guint m,
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_01(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \ #define BUTTERFLY_01(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \
register double T2re, T2im; \ double T2re, T2im; \
T2re = X1re + X2im; \ T2re = X1re + X2im; \
T2im = X1im - X2re; \ T2im = X1im - X2re; \
Y1re = X1re - X2im; \ Y1re = X1re - X2im; \
@ -180,7 +180,7 @@ diff (guint m,
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_0m(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \ #define BUTTERFLY_0m(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,_1,_2) { \
register double T2re, T2im; \ double T2re, T2im; \
T2re = X1re - X2im; \ T2re = X1re - X2im; \
T2im = X1im + X2re; \ T2im = X1im + X2re; \
Y1re = X1re + X2im; \ Y1re = X1re + X2im; \
@ -189,7 +189,7 @@ diff (guint m,
Y2im = T2im; \ Y2im = T2im; \
} }
#define BUTTERFLY_10scale(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,S) { \ #define BUTTERFLY_10scale(X1re,X1im,X2re,X2im,Y1re,Y1im,Y2re,Y2im,S) { \
register double T2re, T2im; \ double T2re, T2im; \
T2re = X1re - X2re; \ T2re = X1re - X2re; \
T2im = X1im - X2im; \ T2im = X1im - X2im; \
Y1re = X1re + X2re; \ Y1re = X1re + X2re; \
@ -200,7 +200,7 @@ diff (guint m,
Y1im *= S; \ Y1im *= S; \
} }
#define WMULTIPLY(Wre,Wim,Dre,Dim) { \ #define WMULTIPLY(Wre,Wim,Dre,Dim) { \
register double T1re, T1im, T2re, T2im; \ double T1re, T1im, T2re, T2im; \
T1re = Wre * Dre; \ T1re = Wre * Dre; \
T1im = Wim * Dre; \ T1im = Wim * Dre; \
T2re = Wim * Dim; \ T2re = Wim * Dim; \

@ -993,7 +993,7 @@ static inline gdouble /* Y */
filter_step_direct_canon_2 (GslIIRFilter *f, filter_step_direct_canon_2 (GslIIRFilter *f,
gdouble X) gdouble X)
{ {
register guint n = f->order; guint n = f->order;
gdouble *a = f->a, *b = f->b, *w = f->w; gdouble *a = f->a, *b = f->b, *w = f->w;
gdouble x, y, v; gdouble x, y, v;
@ -1025,7 +1025,7 @@ static inline gdouble /* Y */
filter_step_direct_canon_1 (GslIIRFilter *f, filter_step_direct_canon_1 (GslIIRFilter *f,
gdouble X) gdouble X)
{ {
register guint n = f->order; guint n = f->order;
gdouble *a = f->a, *b = f->b, *w = f->w; gdouble *a = f->a, *b = f->b, *w = f->w;
gdouble y, v; gdouble y, v;

@ -68,8 +68,8 @@ g_stpcpy (gchar *dest,
g_return_val_if_fail (src != NULL, NULL); g_return_val_if_fail (src != NULL, NULL);
return stpcpy (dest, src); return stpcpy (dest, src);
#else #else
register gchar *d = dest; gchar *d = dest;
register const gchar *s = src; const gchar *s = src;
g_return_val_if_fail (dest != NULL, NULL); g_return_val_if_fail (dest != NULL, NULL);
g_return_val_if_fail (src != NULL, NULL); g_return_val_if_fail (src != NULL, NULL);
@ -2036,7 +2036,7 @@ printf_string_upper_bound (const gchar *format,
while (*format) while (*format)
{ {
register gchar c = *format++; gchar c = *format++;
if (c != '%') if (c != '%')
len += 1; len += 1;

@ -313,7 +313,7 @@ struct _GTrashStack
static inline guint static inline guint
g_bit_storage (gulong number) g_bit_storage (gulong number)
{ {
register guint n_bits = 0; guint n_bits = 0;
do do
{ {

@ -109,8 +109,8 @@ typedef unsigned short int GslFpuState;
static inline void gsl_fpu_setround (GslFpuState *cw); static inline void gsl_fpu_setround (GslFpuState *cw);
static inline int gsl_fpu_okround (void); static inline int gsl_fpu_okround (void);
static inline void gsl_fpu_restore (GslFpuState cv); static inline void gsl_fpu_restore (GslFpuState cv);
static inline int gsl_ftoi /* nearest */ (register float f) G_GNUC_CONST; static inline int gsl_ftoi /* nearest */ (float f) G_GNUC_CONST;
static inline int gsl_dtoi /* nearest */ (register double f) G_GNUC_CONST; static inline int gsl_dtoi /* nearest */ (double f) G_GNUC_CONST;
/* fallbacks for the !386 case are below */ /* fallbacks for the !386 case are below */
#endif #endif
@ -204,7 +204,7 @@ gsl_fpu_restore (GslFpuState cv)
: "m" (*&cv)); : "m" (*&cv));
} }
static inline int G_GNUC_CONST static inline int G_GNUC_CONST
gsl_ftoi (register float f) gsl_ftoi (float f)
{ {
int r; int r;
@ -214,7 +214,7 @@ gsl_ftoi (register float f)
return r; return r;
} }
static inline int G_GNUC_CONST static inline int G_GNUC_CONST
gsl_dtoi (register double f) gsl_dtoi (double f)
{ {
int r; int r;
@ -228,12 +228,12 @@ gsl_dtoi (register double f)
# define gsl_fpu_okround() (1) # define gsl_fpu_okround() (1)
# define gsl_fpu_restore(x) /* nop */ # define gsl_fpu_restore(x) /* nop */
static inline int G_GNUC_CONST static inline int G_GNUC_CONST
gsl_ftoi (register float v) gsl_ftoi (float v)
{ {
return v < -0.0 ? v - 0.5 : v + 0.5; return v < -0.0 ? v - 0.5 : v + 0.5;
} }
static inline int G_GNUC_CONST static inline int G_GNUC_CONST
gsl_dtoi (register double v) gsl_dtoi (double v)
{ {
return v < -0.0 ? v - 0.5 : v + 0.5; return v < -0.0 ? v - 0.5 : v + 0.5;
} }

@ -273,7 +273,7 @@ const_values_lookup_nextmost (ConstValuesArray *array,
do do
{ {
guint i; guint i;
register gfloat cmp; gfloat cmp;
i = (n_nodes + 1) >> 1; i = (n_nodes + 1) >> 1;
check = nodes + i; check = nodes + i;

@ -616,7 +616,7 @@ gsl_osc_wave_normalize (guint n_values,
max = min; max = min;
for (i = 1; i < n_values; i++) for (i = 1; i < n_values; i++)
{ {
register gfloat v = values[i]; gfloat v = values[i];
max = MAX (max, v); max = MAX (max, v);
min = MIN (min, v); min = MIN (min, v);

@ -113,7 +113,7 @@ static inline double gsl_approx_exp2 (float ex) G_GNUC_CONST;
* d2 = 1.0091272542790025586079663559158; * d2 = 1.0091272542790025586079663559158;
* positive_atan1(x) = 1 + (n1 * x + n2) / ((1 + d1 * x) * x + d2); * positive_atan1(x) = 1 + (n1 * x + n2) / ((1 + d1 * x) * x + d2);
*/ */
static inline double gsl_approx_atan1 (register double x) G_GNUC_CONST; static inline double gsl_approx_atan1 (double x) G_GNUC_CONST;
/** /**
* gsl_approx_atan1_prescale * gsl_approx_atan1_prescale
@ -134,7 +134,7 @@ double gsl_approx_atan1_prescale (double boost_amount);
* wasn't minimized, but distributed to best fit the curverture of a * wasn't minimized, but distributed to best fit the curverture of a
* quarter circle. The maximum error is below 0.092. * quarter circle. The maximum error is below 0.092.
*/ */
static inline double gsl_approx_qcircle1 (register double x) G_GNUC_CONST; static inline double gsl_approx_qcircle1 (double x) G_GNUC_CONST;
/** /**
* gsl_approx_qcircle2 * gsl_approx_qcircle2
@ -145,7 +145,7 @@ static inline double gsl_approx_qcircle1 (register double x) G_GNUC_CONST;
* wasn't minimized, but distributed to best fit the curverture of a * wasn't minimized, but distributed to best fit the curverture of a
* quarter circle. The maximum error is below 0.092. * quarter circle. The maximum error is below 0.092.
*/ */
static inline double gsl_approx_qcircle2 (register double x) G_GNUC_CONST; static inline double gsl_approx_qcircle2 (double x) G_GNUC_CONST;
/** /**
* gsl_approx_qcircle3 * gsl_approx_qcircle3
@ -156,7 +156,7 @@ static inline double gsl_approx_qcircle2 (register double x) G_GNUC_CONST;
* wasn't minimized, but distributed to best fit the curverture of a * wasn't minimized, but distributed to best fit the curverture of a
* quarter circle. The maximum error is below 0.092. * quarter circle. The maximum error is below 0.092.
*/ */
static inline double gsl_approx_qcircle3 (register double x) G_GNUC_CONST; static inline double gsl_approx_qcircle3 (double x) G_GNUC_CONST;
/** /**
* gsl_approx_qcircle4 * gsl_approx_qcircle4
@ -167,7 +167,7 @@ static inline double gsl_approx_qcircle3 (register double x) G_GNUC_CONST;
* wasn't minimized, but distributed to best fit the curverture of a * wasn't minimized, but distributed to best fit the curverture of a
* quarter circle. The maximum error is below 0.092. * quarter circle. The maximum error is below 0.092.
*/ */
static inline double gsl_approx_qcircle4 (register double x) G_GNUC_CONST; static inline double gsl_approx_qcircle4 (double x) G_GNUC_CONST;
/* --- windows --- */ /* --- windows --- */
@ -186,11 +186,11 @@ extern const gdouble *gsl_cent_table;
/* --- implementation details --- */ /* --- implementation details --- */
static inline double G_GNUC_CONST static inline double G_GNUC_CONST
gsl_approx_atan1 (register double x) gsl_approx_atan1 (double x)
{ {
if (x < 0) /* make use of -atan(-x)==atan(x) */ if (x < 0) /* make use of -atan(-x)==atan(x) */
{ {
register double numerator, denominator = -1.0; double numerator, denominator = -1.0;
denominator += x * 0.81901156857081841441890603235599; /* d1 */ denominator += x * 0.81901156857081841441890603235599; /* d1 */
numerator = x * 0.41156875521951602506487246309908; /* -n1 */ numerator = x * 0.41156875521951602506487246309908; /* -n1 */
@ -202,7 +202,7 @@ gsl_approx_atan1 (register double x)
} }
else else
{ {
register double numerator, denominator = 1.0; double numerator, denominator = 1.0;
denominator += x * 0.81901156857081841441890603235599; /* d1 */ denominator += x * 0.81901156857081841441890603235599; /* d1 */
numerator = x * -0.41156875521951602506487246309908; /* n1 */ numerator = x * -0.41156875521951602506487246309908; /* n1 */
@ -215,7 +215,7 @@ gsl_approx_atan1 (register double x)
} }
static inline double G_GNUC_CONST static inline double G_GNUC_CONST
gsl_approx_qcircle1 (register double x) gsl_approx_qcircle1 (double x)
{ {
double numerator = 1.20460124790369468987715633298929 * x - 1.20460124790369468987715633298929; double numerator = 1.20460124790369468987715633298929 * x - 1.20460124790369468987715633298929;
double denominator = x - 1.20460124790369468987715633298929; double denominator = x - 1.20460124790369468987715633298929;
@ -224,7 +224,7 @@ gsl_approx_qcircle1 (register double x)
} }
static inline double G_GNUC_CONST static inline double G_GNUC_CONST
gsl_approx_qcircle2 (register double x) gsl_approx_qcircle2 (double x)
{ {
double numerator = 1.20460124790369468987715633298929*x; double numerator = 1.20460124790369468987715633298929*x;
double denominator = x + 0.20460124790369468987715633298929; double denominator = x + 0.20460124790369468987715633298929;
@ -233,7 +233,7 @@ gsl_approx_qcircle2 (register double x)
} }
static inline double G_GNUC_CONST static inline double G_GNUC_CONST
gsl_approx_qcircle3 (register double x) gsl_approx_qcircle3 (double x)
{ {
double numerator = 0.20460124790369468987715633298929 - 0.20460124790369468987715633298929 * x; double numerator = 0.20460124790369468987715633298929 - 0.20460124790369468987715633298929 * x;
double denominator = x + 0.20460124790369468987715633298929; double denominator = x + 0.20460124790369468987715633298929;
@ -242,7 +242,7 @@ gsl_approx_qcircle3 (register double x)
} }
static inline double G_GNUC_CONST static inline double G_GNUC_CONST
gsl_approx_qcircle4 (register double x) gsl_approx_qcircle4 (double x)
{ {
double numerator = -0.20460124790369468987715633298929 * x; double numerator = -0.20460124790369468987715633298929 * x;
double denominator = x - 1.20460124790369468987715633298929; double denominator = x - 1.20460124790369468987715633298929;
@ -253,8 +253,8 @@ gsl_approx_qcircle4 (register double x)
static inline double G_GNUC_CONST static inline double G_GNUC_CONST
gsl_approx_exp2 (float ex) gsl_approx_exp2 (float ex)
{ {
register GslFloatIEEE754 fp = { 0, }; GslFloatIEEE754 fp = { 0, };
register double numer, denom, x; double numer, denom, x;
gint i; gint i;
i = gsl_ftoi (ex); i = gsl_ftoi (ex);

@ -498,7 +498,7 @@ printf_string_upper_bound (const gchar *format,
while (*format) while (*format)
{ {
register gchar c = *format++; gchar c = *format++;
if (c != '%') if (c != '%')
len += 1; len += 1;

@ -852,9 +852,9 @@ YY_MALLOC_DECL
YY_DECL YY_DECL
{ {
register yy_state_type yy_current_state; yy_state_type yy_current_state;
register char *yy_cp, *yy_bp; char *yy_cp, *yy_bp;
register int yy_act; int yy_act;
#line 100 "scanner.ll" #line 100 "scanner.ll"
@ -903,7 +903,7 @@ YY_DECL
yy_match: yy_match:
do do
{ {
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{ {
yy_current_state = (int) yy_def[yy_current_state]; yy_current_state = (int) yy_def[yy_current_state];
@ -1344,9 +1344,9 @@ ECHO;
static int yy_get_next_buffer() static int yy_get_next_buffer()
{ {
register char *dest = yy_current_buffer->yy_ch_buf; char *dest = yy_current_buffer->yy_ch_buf;
register char *source = yytext_ptr; char *source = yytext_ptr;
register int number_to_move, i; int number_to_move, i;
int ret_val; int ret_val;
if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] ) if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
@ -1476,8 +1476,8 @@ static int yy_get_next_buffer()
static yy_state_type yy_get_previous_state() static yy_state_type yy_get_previous_state()
{ {
register yy_state_type yy_current_state; yy_state_type yy_current_state;
register char *yy_cp; char *yy_cp;
yy_current_state = yy_start; yy_current_state = yy_start;
yy_state_ptr = yy_state_buf; yy_state_ptr = yy_state_buf;
@ -1485,7 +1485,7 @@ static yy_state_type yy_get_previous_state()
for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
{ {
register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{ {
yy_current_state = (int) yy_def[yy_current_state]; yy_current_state = (int) yy_def[yy_current_state];
@ -1513,9 +1513,9 @@ static yy_state_type yy_try_NUL_trans( yy_current_state )
yy_state_type yy_current_state; yy_state_type yy_current_state;
#endif #endif
{ {
register int yy_is_jam; int yy_is_jam;
register YY_CHAR yy_c = 1; YY_CHAR yy_c = 1;
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{ {
yy_current_state = (int) yy_def[yy_current_state]; yy_current_state = (int) yy_def[yy_current_state];
@ -1533,14 +1533,14 @@ yy_state_type yy_current_state;
#ifndef YY_NO_UNPUT #ifndef YY_NO_UNPUT
#ifdef YY_USE_PROTOS #ifdef YY_USE_PROTOS
static void yyunput( int c, register char *yy_bp ) static void yyunput( int c, char *yy_bp )
#else #else
static void yyunput( c, yy_bp ) static void yyunput( c, yy_bp )
int c; int c;
register char *yy_bp; char *yy_bp;
#endif #endif
{ {
register char *yy_cp = yy_c_buf_p; char *yy_cp = yy_c_buf_p;
/* undo effects of setting up yytext */ /* undo effects of setting up yytext */
*yy_cp = yy_hold_char; *yy_cp = yy_hold_char;
@ -1548,10 +1548,10 @@ register char *yy_bp;
if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
{ /* need to shift things up to make room */ { /* need to shift things up to make room */
/* +2 for EOB chars. */ /* +2 for EOB chars. */
register int number_to_move = yy_n_chars + 2; int number_to_move = yy_n_chars + 2;
register char *dest = &yy_current_buffer->yy_ch_buf[ char *dest = &yy_current_buffer->yy_ch_buf[
yy_current_buffer->yy_buf_size + 2]; yy_current_buffer->yy_buf_size + 2];
register char *source = char *source =
&yy_current_buffer->yy_ch_buf[number_to_move]; &yy_current_buffer->yy_ch_buf[number_to_move];
while ( source > yy_current_buffer->yy_ch_buf ) while ( source > yy_current_buffer->yy_ch_buf )
@ -2012,7 +2012,7 @@ yyconst char *s2;
int n; int n;
#endif #endif
{ {
register int i; int i;
for ( i = 0; i < n; ++i ) for ( i = 0; i < n; ++i )
s1[i] = s2[i]; s1[i] = s2[i];
} }
@ -2026,7 +2026,7 @@ static int yy_flex_strlen( s )
yyconst char *s; yyconst char *s;
#endif #endif
{ {
register int n; int n;
for ( n = 0; s[n]; ++n ) for ( n = 0; s[n]; ++n )
; ;

@ -522,9 +522,9 @@ __yy_memcpy (to, from, count)
char *from; char *from;
unsigned int count; unsigned int count;
{ {
register char *f = from; char *f = from;
register char *t = to; char *t = to;
register int i = count; int i = count;
while (i-- > 0) while (i-- > 0)
*t++ = *f++; *t++ = *f++;
@ -537,9 +537,9 @@ __yy_memcpy (to, from, count)
static void static void
__yy_memcpy (char *to, char *from, unsigned int count) __yy_memcpy (char *to, char *from, unsigned int count)
{ {
register char *t = to; char *t = to;
register char *f = from; char *f = from;
register int i = count; int i = count;
while (i-- > 0) while (i-- > 0)
*t++ = *f++; *t++ = *f++;
@ -582,10 +582,10 @@ int
yyparse(YYPARSE_PARAM_ARG) yyparse(YYPARSE_PARAM_ARG)
YYPARSE_PARAM_DECL YYPARSE_PARAM_DECL
{ {
register int yystate; int yystate;
register int yyn; int yyn;
register short *yyssp; short *yyssp;
register YYSTYPE *yyvsp; YYSTYPE *yyvsp;
int yyerrstatus; /* number of tokens to shift before error messages enabled */ int yyerrstatus; /* number of tokens to shift before error messages enabled */
int yychar1 = 0; /* lookahead token as an internal (translated) token number */ int yychar1 = 0; /* lookahead token as an internal (translated) token number */

Loading…
Cancel
Save