Fix editing mishap, should fix the build

This commit is contained in:
martin 2022-06-27 06:45:14 +00:00
parent c3bf6f9596
commit 8f08765306
1 changed files with 1 additions and 1 deletions

View File

@ -979,7 +979,7 @@ public:
}
bool validRegister(int num) const {
return num >= REGNO_HPPA_PC && num <= REGNO_HPPA_R31) ||
return (num >= REGNO_HPPA_PC && num <= REGNO_HPPA_R31) ||
num == REGNO_HPPA_SIGRETURN;
}