summaryrefslogtreecommitdiff
path: root/src/pretty_print.ml
diff options
context:
space:
mode:
authorKathy Gray2015-06-02 15:09:24 +0100
committerKathy Gray2015-06-02 15:09:24 +0100
commit19f34a049b8c8008e2566e32932fdf262d15b0ea (patch)
tree38251b9543c67b7b8b015f31257e3b1afc588e20 /src/pretty_print.ml
parent471607a45b814244e19704c221e1735d250f9b59 (diff)
Fix errors around ARM not being able to decode due to instruction_extractor being very power-specific.
Note: slight interface change to instruction_extractor
Diffstat (limited to 'src/pretty_print.ml')
-rw-r--r--src/pretty_print.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pretty_print.ml b/src/pretty_print.ml
index 3f167ffc..25a9f41b 100644
--- a/src/pretty_print.ml
+++ b/src/pretty_print.ml
@@ -289,7 +289,7 @@ let pp_format_tag = function
| External None -> "(Tag_extern Nothing)"
| Default -> "Tag_default"
| Constructor -> "Tag_ctor"
- | Enum -> "Tag_enum"
+ | Enum i -> "(Tag_enum " ^ (lemnum string_of_int i) ^ ")"
| Alias -> "Tag_alias"
| Spec -> "Tag_spec"