summaryrefslogtreecommitdiff
path: root/risc-v
diff options
context:
space:
mode:
authorShaked Flur2017-08-17 14:30:15 +0100
committerShaked Flur2017-08-17 14:30:15 +0100
commitd5fe6885da9758a8924929547e40dd72e7333428 (patch)
tree1c8b6577b9052e0e372071349a2f1f983a8e9969 /risc-v
parentcc46b5a2366cd73d34117590448f6779fac4d312 (diff)
parent71f4339b60addfa55ce2de1ccceb40aabe63cc31 (diff)
Merge branch 'master' of bitbucket.org:Peter_Sewell/sail
# Conflicts: # risc-v/hgen/types.hgen
Diffstat (limited to 'risc-v')
-rw-r--r--risc-v/hgen/types.hgen2
1 files changed, 0 insertions, 2 deletions
diff --git a/risc-v/hgen/types.hgen b/risc-v/hgen/types.hgen
index bb6d164c..11d0921e 100644
--- a/risc-v/hgen/types.hgen
+++ b/risc-v/hgen/types.hgen
@@ -108,7 +108,6 @@ let pp_riscv_load_op (unsigned, width, aq) =
| (false, RISCVWORD) -> "lw"
| (true, RISCVWORD) -> "lwu"
| (_, RISCVDOUBLE) -> "ld"
- | _ -> failwith "unexpected load op"
end
^ (if aq then ".aq" else "")
@@ -117,7 +116,6 @@ let pp_riscv_store_op width = match width with
| RISCVHALF -> "sh"
| RISCVWORD -> "sw"
| RISCVDOUBLE -> "sd"
-| _ -> failwith "unexpected store op"
let pp_riscv_fence_option = function
| 0b0011 -> "rw"