mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-30 16:41:31 +00:00
Refactoring patch by DevHC
This commit is contained in:
parent
21668c0616
commit
fef4d12d68
31 changed files with 60 additions and 98 deletions
|
@ -690,7 +690,7 @@ static const long int gpr_list[] = {
|
|||
r7, r8, r9, r10,
|
||||
};
|
||||
static const long int gpr_vstart = 8; /* position of first volatile register */
|
||||
static const long int gpr_total = sizeof( gpr_list ) / sizeof( gpr_list[0] );
|
||||
static const long int gpr_total = ARRAY_LEN( gpr_list );
|
||||
|
||||
static const long int fpr_list[] = {
|
||||
/* static registers, normally none is used */
|
||||
|
@ -704,7 +704,7 @@ static const long int fpr_list[] = {
|
|||
f12, f13,
|
||||
};
|
||||
static const long int fpr_vstart = 8;
|
||||
static const long int fpr_total = sizeof( fpr_list ) / sizeof( fpr_list[0] );
|
||||
static const long int fpr_total = ARRAY_LEN( fpr_list );
|
||||
|
||||
/*
|
||||
* prepare some dummy structures and emit init code
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue