aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/PrintRTLBlockInstr.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/hls/PrintRTLBlockInstr.ml')
-rw-r--r--src/hls/PrintRTLBlockInstr.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hls/PrintRTLBlockInstr.ml b/src/hls/PrintRTLBlockInstr.ml
index 3709e04..a943aab 100644
--- a/src/hls/PrintRTLBlockInstr.ml
+++ b/src/hls/PrintRTLBlockInstr.ml
@@ -22,14 +22,14 @@ let print_bblock_body pp i =
fprintf pp "\t\t";
match i with
| RBnop -> fprintf pp "nop\n"
- | RBop(op, ls, dst) ->
+ | RBop(_, op, ls, dst) ->
fprintf pp "%a = %a\n"
reg dst (PrintOp.print_operation reg) (op, ls)
- | RBload(chunk, addr, args, dst) ->
+ | RBload(_, chunk, addr, args, dst) ->
fprintf pp "%a = %s[%a]\n"
reg dst (name_of_chunk chunk)
(PrintOp.print_addressing reg) (addr, args)
- | RBstore(chunk, addr, args, src) ->
+ | RBstore(_, chunk, addr, args, src) ->
fprintf pp "%s[%a] = %a\n"
(name_of_chunk chunk)
(PrintOp.print_addressing reg) (addr, args)