summaryrefslogtreecommitdiff
path: root/mips
diff options
context:
space:
mode:
Diffstat (limited to 'mips')
-rw-r--r--mips/mips.sail4
1 files changed, 2 insertions, 2 deletions
diff --git a/mips/mips.sail b/mips/mips.sail
index bac6d24b..d318116b 100644
--- a/mips/mips.sail
+++ b/mips/mips.sail
@@ -271,9 +271,9 @@ function clause execute (DADDI (rs, rt, imm)) =
{
let (temp, overflow, _) = (rGPR(rs) +_s EXTS(imm)) in (* XXX is this the same definition of overflow as in spec? *)
{
- (*if overflow then
+ if overflow then
SignalException(Ov)
- else*)
+ else
wGPR(rt) := temp
}
}