Remove uses of register due to incompatibility with C++17 and up
The use in regexec.c could remain, since we only try to keep headers C++ clean. But there really doesn't seem to be a good reason to use register in that spot. Discussion: https://postgr.es/m/20220308185902.ibdqmasoaunzjrfc@alap3.anarazel.de
This commit is contained in:
parent
eef63941c1
commit
03bf971d2d
@ -556,8 +556,6 @@ task:
|
|||||||
# - Use -fmax-errors, as particularly cpluspluscheck can be very verbose
|
# - Use -fmax-errors, as particularly cpluspluscheck can be very verbose
|
||||||
# - XXX have to disable ICU to avoid errors:
|
# - XXX have to disable ICU to avoid errors:
|
||||||
# https://postgr.es/m/20220323002024.f2g6tivduzrktgfa%40alap3.anarazel.de
|
# https://postgr.es/m/20220323002024.f2g6tivduzrktgfa%40alap3.anarazel.de
|
||||||
# - XXX: the -Wno-register avoids verbose warnings:
|
|
||||||
# https://postgr.es/m/20220308181837.aun3tdtdvao4vb7o%40alap3.anarazel.de
|
|
||||||
###
|
###
|
||||||
always:
|
always:
|
||||||
headers_headerscheck_script: |
|
headers_headerscheck_script: |
|
||||||
@ -569,7 +567,7 @@ task:
|
|||||||
make -s -j${BUILD_JOBS} clean
|
make -s -j${BUILD_JOBS} clean
|
||||||
time make -s headerscheck EXTRAFLAGS='-fmax-errors=10'
|
time make -s headerscheck EXTRAFLAGS='-fmax-errors=10'
|
||||||
headers_cpluspluscheck_script: |
|
headers_cpluspluscheck_script: |
|
||||||
time make -s cpluspluscheck EXTRAFLAGS='-Wno-register -fmax-errors=10'
|
time make -s cpluspluscheck EXTRAFLAGS='-fmax-errors=10'
|
||||||
|
|
||||||
always:
|
always:
|
||||||
upload_caches: ccache
|
upload_caches: ccache
|
||||||
|
@ -192,7 +192,7 @@ pg_regexec(regex_t *re,
|
|||||||
int flags)
|
int flags)
|
||||||
{
|
{
|
||||||
struct vars var;
|
struct vars var;
|
||||||
register struct vars *v = &var;
|
struct vars *v = &var;
|
||||||
int st;
|
int st;
|
||||||
size_t n;
|
size_t n;
|
||||||
size_t i;
|
size_t i;
|
||||||
|
@ -140,7 +140,7 @@ pg_spin_delay_impl(void)
|
|||||||
static inline bool
|
static inline bool
|
||||||
pg_atomic_test_set_flag_impl(volatile pg_atomic_flag *ptr)
|
pg_atomic_test_set_flag_impl(volatile pg_atomic_flag *ptr)
|
||||||
{
|
{
|
||||||
register char _res = 1;
|
char _res = 1;
|
||||||
|
|
||||||
__asm__ __volatile__(
|
__asm__ __volatile__(
|
||||||
" lock \n"
|
" lock \n"
|
||||||
|
@ -142,7 +142,7 @@ typedef unsigned char slock_t;
|
|||||||
static __inline__ int
|
static __inline__ int
|
||||||
tas(volatile slock_t *lock)
|
tas(volatile slock_t *lock)
|
||||||
{
|
{
|
||||||
register slock_t _res = 1;
|
slock_t _res = 1;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Use a non-locking test before asserting the bus lock. Note that the
|
* Use a non-locking test before asserting the bus lock. Note that the
|
||||||
@ -223,7 +223,7 @@ typedef unsigned char slock_t;
|
|||||||
static __inline__ int
|
static __inline__ int
|
||||||
tas(volatile slock_t *lock)
|
tas(volatile slock_t *lock)
|
||||||
{
|
{
|
||||||
register slock_t _res = 1;
|
slock_t _res = 1;
|
||||||
|
|
||||||
__asm__ __volatile__(
|
__asm__ __volatile__(
|
||||||
" lock \n"
|
" lock \n"
|
||||||
@ -356,7 +356,7 @@ typedef unsigned char slock_t;
|
|||||||
static __inline__ int
|
static __inline__ int
|
||||||
tas(volatile slock_t *lock)
|
tas(volatile slock_t *lock)
|
||||||
{
|
{
|
||||||
register slock_t _res;
|
slock_t _res;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* See comment in src/backend/port/tas/sunstudio_sparc.s for why this
|
* See comment in src/backend/port/tas/sunstudio_sparc.s for why this
|
||||||
@ -511,9 +511,9 @@ typedef unsigned int slock_t;
|
|||||||
static __inline__ int
|
static __inline__ int
|
||||||
tas(volatile slock_t *lock)
|
tas(volatile slock_t *lock)
|
||||||
{
|
{
|
||||||
register volatile slock_t *_l = lock;
|
volatile slock_t *_l = lock;
|
||||||
register int _res;
|
int _res;
|
||||||
register int _tmp;
|
int _tmp;
|
||||||
|
|
||||||
__asm__ __volatile__(
|
__asm__ __volatile__(
|
||||||
" .set push \n"
|
" .set push \n"
|
||||||
@ -574,7 +574,7 @@ static __inline__ int
|
|||||||
tas(volatile slock_t *lock)
|
tas(volatile slock_t *lock)
|
||||||
{
|
{
|
||||||
volatile int *lockword = TAS_ACTIVE_WORD(lock);
|
volatile int *lockword = TAS_ACTIVE_WORD(lock);
|
||||||
register int lockval;
|
int lockval;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The LDCWX instruction atomically clears the target word and
|
* The LDCWX instruction atomically clears the target word and
|
||||||
|
Loading…
x
Reference in New Issue
Block a user