ovfl_harmful and arrbound_harmful turned into ints
authorbal <none@none>
Wed, 23 Jan 1985 16:25:29 +0000 (16:25 +0000)
committerbal <none@none>
Wed, 23 Jan 1985 16:25:29 +0000 (16:25 +0000)
util/ego/sr/sr.c
util/ego/sr/sr.h

index ce91d9a..da38ae4 100644 (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 */
 
index 7ff40b0..a472690 100644 (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 */