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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user