fix typo and parameters of overflow
This commit is contained in:
parent
5cf3fc1017
commit
78926a5a84
2 changed files with 3 additions and 3 deletions
|
@ -295,10 +295,10 @@ cstubin(expp)
|
||||||
if (expp->nd_type->tp_fund == T_INTORCARD) {
|
if (expp->nd_type->tp_fund == T_INTORCARD) {
|
||||||
expp->nd_type = int_type;
|
expp->nd_type = int_type;
|
||||||
if (! chk_bounds(min_int[sz], o1 - o2, T_CARDINAL)) {
|
if (! chk_bounds(min_int[sz], o1 - o2, T_CARDINAL)) {
|
||||||
overflow();
|
overflow(expp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else overflow();
|
else overflow(expp);
|
||||||
}
|
}
|
||||||
o1 -= o2;
|
o1 -= o2;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -230,7 +230,7 @@ WalkProcedure(procedure)
|
||||||
DoFilename(procedure->prc_body);
|
DoFilename(procedure->prc_body);
|
||||||
TmpOpen(procscope);
|
TmpOpen(procscope);
|
||||||
|
|
||||||
func_type = tp = RemoveEqual(RresultType(procedure->df_type));
|
func_type = tp = RemoveEqual(ResultType(procedure->df_type));
|
||||||
|
|
||||||
if (tp) {
|
if (tp) {
|
||||||
func_res_size = WA(tp->tp_size);
|
func_res_size = WA(tp->tp_size);
|
||||||
|
|
Loading…
Add table
Reference in a new issue