From 880496b35e88fddaefe6f62350c2dfa987b2dee9 Mon Sep 17 00:00:00 2001 From: Nikos Nikoleris Date: Thu, 23 Apr 2020 17:30:03 +0100 Subject: [PATCH] arch-arm: Fix access modifier in Arm*ProcessBits class Change-Id: Ie983abc94dd9e62bbec3f584b70b0d04d6e8305d Reviewed-by: Giacomo Travaglini Signed-off-by: Nikos Nikoleris Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/28248 Reviewed-by: Bobby R. Bruce Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- src/arch/arm/freebsd/process.hh | 2 +- src/arch/arm/linux/process.hh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/arch/arm/freebsd/process.hh b/src/arch/arm/freebsd/process.hh index ac0092e9f..d52512a01 100644 --- a/src/arch/arm/freebsd/process.hh +++ b/src/arch/arm/freebsd/process.hh @@ -39,7 +39,7 @@ class ArmFreebsdProcessBits { - protected: + public: struct SyscallABI {}; }; diff --git a/src/arch/arm/linux/process.hh b/src/arch/arm/linux/process.hh index 0662d9f60..0c15c2802 100644 --- a/src/arch/arm/linux/process.hh +++ b/src/arch/arm/linux/process.hh @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011-2012 ARM Limited + * Copyright (c) 2011-2012 ARM Limited * All rights reserved * * The license below extends only to copyright in the software and shall @@ -47,7 +47,7 @@ class ArmLinuxProcessBits { - protected: + public: struct SyscallABI {}; }; -- 2.30.2