ovfl_harmful and arrbound_harmful turned into ints
This commit is contained in:
parent
d32d4e6ba0
commit
cac6ffd8c2
|
@ -38,8 +38,8 @@
|
||||||
|
|
||||||
/* Machine and/or language dependent parameters: */
|
/* Machine and/or language dependent parameters: */
|
||||||
|
|
||||||
bool ovfl_harmful;
|
int ovfl_harmful;
|
||||||
bool arrbound_harmful;
|
int arrbound_harmful;
|
||||||
|
|
||||||
int Ssr; /* #optimizations found */
|
int Ssr; /* #optimizations found */
|
||||||
|
|
||||||
|
|
|
@ -55,10 +55,10 @@ struct code_info {
|
||||||
|
|
||||||
/* Parameters to be provided by environment: */
|
/* Parameters to be provided by environment: */
|
||||||
|
|
||||||
extern bool ovfl_harmful; /* Does overflow during multiplication
|
extern int ovfl_harmful; /* Does overflow during multiplication
|
||||||
* cause a trap ?
|
* cause a trap ?
|
||||||
*/
|
*/
|
||||||
extern bool arrbound_harmful; /* Is it harmful to take the address of
|
extern int arrbound_harmful; /* Is it harmful to take the address of
|
||||||
* a non-existing array element ?
|
* a non-existing array element ?
|
||||||
*/
|
*/
|
||||||
extern int Ssr; /* #optimizations found */
|
extern int Ssr; /* #optimizations found */
|
||||||
|
|
Loading…
Reference in a new issue