Module Name: src Committed By: martin Date: Mon Jun 27 06:45:15 UTC 2022
Modified Files: src/sys/lib/libunwind: Registers.hpp Log Message: Fix editing mishap, should fix the build To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 src/sys/lib/libunwind/Registers.hpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/lib/libunwind/Registers.hpp diff -u src/sys/lib/libunwind/Registers.hpp:1.38 src/sys/lib/libunwind/Registers.hpp:1.39 --- src/sys/lib/libunwind/Registers.hpp:1.38 Sun Jun 26 14:31:33 2022 +++ src/sys/lib/libunwind/Registers.hpp Mon Jun 27 06:45:14 2022 @@ -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; }