Change subject: arch-arm: Fix minor bug PAUTH comparision with 0
......................................................................
arch-arm: Fix minor bug PAUTH comparision with 0
Change-Id: I887e5fa256a8c9cc24f7b9ef1fc0353dea555e82
---
M src/arch/arm/pauth_helpers.cc
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/arch/arm/pauth_helpers.cc b/src/arch/arm/pauth_helpers.cc
index 1c83d77..c88795f 100644
--- a/src/arch/arm/pauth_helpers.cc
+++ b/src/arch/arm/pauth_helpers.cc
@@ -706,7 +706,7 @@
{
case EL0:
trapEL2 = (EL2Enabled(tc) && hcr.api == 0 &&
- (hcr.tge == '0' || hcr.e2h == 0));
+ (hcr.tge == 0 || hcr.e2h == 0));
trapEL3 = have_el3 && sc3.api == 0;
break;
case EL1:
--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/30615
To unsubscribe, or for help writing mail filters, visit
https://gem5-review.googlesource.com/settings
Gerrit-Project: public/gem5 Gerrit-Branch: develop Gerrit-Change-Id: I887e5fa256a8c9cc24f7b9ef1fc0353dea555e82 Gerrit-Change-Number: 30615 Gerrit-PatchSet: 1 Gerrit-Owner: Jordi Vaquero <[email protected]> Gerrit-MessageType: newchange
_______________________________________________ gem5-dev mailing list -- [email protected] To unsubscribe send an email to [email protected] %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s
