mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-21 10:21:03 +00:00
Consistency
This commit is contained in:
parent
894e1976e3
commit
cf2352893f
1 changed files with 3 additions and 1 deletions
|
@ -531,6 +531,8 @@
|
|||
|
||||
CONST_OVERWRITE = true
|
||||
|
||||
|
||||
|
||||
[optimizations]
|
||||
#Some general peephole optimizations. For instance the code `a = b
|
||||
#+ c` typically generates 2 instructions, an ADD and a STORE. This
|
||||
|
@ -561,7 +563,6 @@
|
|||
OVERLAP_LOCALS = true
|
||||
|
||||
|
||||
|
||||
#This promotes locally declared variables to "temps". Meaning when
|
||||
#a temporary result of an operation has to be stored somewhere, a
|
||||
#local variable which is not 'alive' at that point can be used to
|
||||
|
@ -644,6 +645,7 @@
|
|||
|
||||
CONST_FOLD_DCE = true
|
||||
|
||||
|
||||
#For constant expressions we can fold them to immediate values.
|
||||
#this option cannot be disabled or enabled, the compiler forces
|
||||
#it to stay enabled by ignoring the value entierly. There are
|
||||
|
|
Loading…
Reference in a new issue