arch-sparc: Fix wrong indentation causing warnings for gcc 6

Change-Id: I94e15ae79f0e73692d882f62fd2b7bf45cf0c841
Reviewed-by: Curtis Dunham <curtis.dunham@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/2900
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
This commit is contained in:
Nikos Nikoleris
2017-04-26 10:52:13 +01:00
parent a517b4a6fb
commit c5bfa6e410
2 changed files with 3 additions and 2 deletions

View File

@@ -458,7 +458,7 @@ output decoder {{
if (_numDestRegs > 0) {
if (_numSrcRegs > 0)
ss << ",";
printReg(ss, _destRegIdx[0]);
printReg(ss, _destRegIdx[0]);
}
return ss.str();

View File

@@ -326,8 +326,9 @@ let {{
'''
TruncateEA = '''
if (!FullSystem)
if (!FullSystem) {
EA = Pstate.am ? EA<31:0> : EA;
}
'''
}};