aboutsummaryrefslogtreecommitdiffstats
path: root/arm
diff options
context:
space:
mode:
Diffstat (limited to 'arm')
-rw-r--r--arm/TargetPrinter.ml4
1 files changed, 4 insertions, 0 deletions
diff --git a/arm/TargetPrinter.ml b/arm/TargetPrinter.ml
index b37683d3..a7e4e50c 100644
--- a/arm/TargetPrinter.ml
+++ b/arm/TargetPrinter.ml
@@ -152,6 +152,8 @@ module Target (Opt: PRINTER_OPTIONS) : TARGET =
| Section_user(s, wr, ex) ->
sprintf ".section \"%s\",\"a%s%s\",%%progbits"
s (if wr then "w" else "") (if ex then "x" else "")
+ | Section_debug_info
+ | Section_debug_abbrev -> "" (* Dummy value *)
let section oc sec =
fprintf oc " %s\n" (name_of_section sec)
@@ -1139,6 +1141,8 @@ module Target (Opt: PRINTER_OPTIONS) : TARGET =
let label = print_label
let new_label = new_label
+
+ let print_file_loc _ _ = () (* Dummy function *)
end
let sel_target () =