aboutsummaryrefslogtreecommitdiffstats
path: root/arm/TargetPrinter.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2016-03-15 15:07:47 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2016-03-15 15:07:47 +0100
commit272a5b812b72f4c3e409ccdbeaf3476d95c4b552 (patch)
tree6a8d5e75a11860b69522cef3b512b1ef5effb438 /arm/TargetPrinter.ml
parent2185164c1845c30ebd4118ed5bc8d339b16663a9 (diff)
downloadcompcert-kvx-272a5b812b72f4c3e409ccdbeaf3476d95c4b552.tar.gz
compcert-kvx-272a5b812b72f4c3e409ccdbeaf3476d95c4b552.zip
Deactivate warning 27 and added back removed code.
The code was mostly there for documentation effort. So warning 27 is deactivated again. Bug 18349
Diffstat (limited to 'arm/TargetPrinter.ml')
-rw-r--r--arm/TargetPrinter.ml10
1 files changed, 5 insertions, 5 deletions
diff --git a/arm/TargetPrinter.ml b/arm/TargetPrinter.ml
index 214e789c..87f1057c 100644
--- a/arm/TargetPrinter.ml
+++ b/arm/TargetPrinter.ml
@@ -690,9 +690,9 @@ module Target (Opt: PRINTER_OPTIONS) : TARGET =
| Pfsts(r1, r2, n) ->
fprintf oc " vstr %a, [%a, #%a]\n" freg_single r1 ireg r2 coqint n; 1
(* Pseudo-instructions *)
- | Pallocframe _ ->
+ | Pallocframe(sz, ofs) ->
assert false
- | Pfreeframe _ ->
+ | Pfreeframe(sz, ofs) ->
assert false
| Plabel lbl ->
fprintf oc "%a:\n" print_label lbl; 0
@@ -725,15 +725,15 @@ module Target (Opt: PRINTER_OPTIONS) : TARGET =
end
| Pbuiltin(ef, args, res) ->
begin match ef with
- | EF_annot(txt, _) ->
+ | EF_annot(txt, targs) ->
fprintf oc "%s annotation: " comment;
print_annot_text preg "sp" oc (camlstring_of_coqstring txt) args;
0
- | EF_debug(kind, txt, _) ->
+ | EF_debug(kind, txt, targs) ->
print_debug_info comment print_file_line preg "sp" oc
(P.to_int kind) (extern_atom txt) args;
0
- | EF_inline_asm(txt, sg, _) ->
+ | EF_inline_asm(txt, sg, clob) ->
fprintf oc "%s begin inline assembly\n\t" comment;
print_inline_asm preg oc (camlstring_of_coqstring txt) sg args res;
fprintf oc "%s end inline assembly\n" comment;