From 0fc08acf92e0d911bf7e264609ffeccdc77fc044 Mon Sep 17 00:00:00 2001 From: Robert Hauser Date: Sat, 16 Mar 2024 09:07:38 +0000 Subject: [PATCH] sim: add whitespace for correct coding style This commit adds two additional whitespaces in the definition of GuestAddr as well as in the operator << overload. Change-Id: Ifb371a09b378fcf4862a768f113b5963b45bd167 --- src/sim/pseudo_inst.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sim/pseudo_inst.hh b/src/sim/pseudo_inst.hh index 57b5ae23e6..6eac340989 100644 --- a/src/sim/pseudo_inst.hh +++ b/src/sim/pseudo_inst.hh @@ -66,13 +66,13 @@ decodeAddrOffset(Addr offset, uint8_t &func) struct GuestAddr { - uint64_t addr; + uint64_t addr; }; inline std::ostream& operator<<(std::ostream& os, const GuestAddr addr) { - return os << addr.addr; + return os << addr.addr; } void arm(ThreadContext *tc);