arch-arm: Fix (another) line-length error in misc.cc

https://github.com/gem5/gem5/pull/459 missed one.
This commit should complete the task.

Change-Id: I0aeba79d6f13ddc45effe141945f5636b75daecc
This commit is contained in:
Bobby R. Bruce
2023-10-16 09:37:51 -07:00
parent 5240c07d3c
commit 322b105b9d

View File

@@ -1938,7 +1938,9 @@ faultSctlr2EL1(const MiscRegLUTEntry &entry,
fault != NoFault
) {
return fault;
} else if (EL2Enabled(tc) && (!isHcrxEL2Enabled(tc) || !hcrx.sctlr2En)) {
} else if (
EL2Enabled(tc) && (!isHcrxEL2Enabled(tc) || !hcrx.sctlr2En)
) {
return inst.generateTrap(EL2);
} else if (ArmSystem::haveEL(tc, EL3) && !scr.sctlr2En) {
return inst.generateTrap(EL3);