Add A_CALL to the list of instructions considered as a calljmp, even though it is a pseudo-instruction, fixes a long list of -O3 and -O4 testsuite failures

git-svn-id: trunk@49468 -
This commit is contained in:
pierre 2021-06-02 20:00:28 +00:00
parent c2c7982a22
commit e6e49baed1
2 changed files with 2 additions and 2 deletions

View File

@ -379,7 +379,7 @@ implementation
begin
is_calljmp:=false;
case o of
A_JAL,A_JALR,A_Bxx:
A_JAL,A_JALR,A_Bxx,A_CALL:
is_calljmp:=true;
else
;

View File

@ -390,7 +390,7 @@ implementation
begin
is_calljmp:=false;
case o of
A_JAL,A_JALR,A_Bxx:
A_JAL,A_JALR,A_Bxx,A_CALL:
is_calljmp:=true;
else
;