ovfl_harmful and arrbound_harmful turned into ints

This commit is contained in:
bal 1985-01-23 16:25:29 +00:00
parent d32d4e6ba0
commit cac6ffd8c2
2 changed files with 4 additions and 4 deletions

View file

@ -38,8 +38,8 @@
/* Machine and/or language dependent parameters: */
bool ovfl_harmful;
bool arrbound_harmful;
int ovfl_harmful;
int arrbound_harmful;
int Ssr; /* #optimizations found */

View file

@ -55,10 +55,10 @@ struct code_info {
/* 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 ?
*/
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 ?
*/
extern int Ssr; /* #optimizations found */