aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorSylvain Boulmé <sylvain.boulme@univ-grenoble-alpes.fr>2021-07-24 11:42:09 +0200
committerSylvain Boulmé <sylvain.boulme@univ-grenoble-alpes.fr>2021-07-24 11:42:09 +0200
commita4570fed198034e535d0d6d99e23cfbb1d40b926 (patch)
treee4e5a9dc845fc0972622ae05fd9084234ed9a44d /common
parent95f918c38b1e59f40ae7af455ec2c6746289375e (diff)
parentb5c4192c73d7b02e0c90354e26b35a84ee141083 (diff)
downloadcompcert-kvx-a4570fed198034e535d0d6d99e23cfbb1d40b926.tar.gz
compcert-kvx-a4570fed198034e535d0d6d99e23cfbb1d40b926.zip
Merge branch 'kvx-work' into rtl-tunneling
Diffstat (limited to 'common')
-rw-r--r--common/DebugPrint.ml4
-rw-r--r--common/Memory.v2
2 files changed, 2 insertions, 4 deletions
diff --git a/common/DebugPrint.ml b/common/DebugPrint.ml
index 6f8449ee..275e6a71 100644
--- a/common/DebugPrint.ml
+++ b/common/DebugPrint.ml
@@ -132,10 +132,10 @@ let print_instructions insts code =
| None -> failwith "Did not get some"
| Some thing -> thing
in if (!debug_flag) then begin
- debug "[ ";
+ debug "[\n";
List.iter (
fun n -> (PrintRTL.print_instruction stdout (P.to_int n, get_some @@ PTree.get n code))
- ) insts; debug "]"
+ ) insts; debug " ]"
end
let print_arrayp arr = begin
diff --git a/common/Memory.v b/common/Memory.v
index bf8ca083..ff17efb0 100644
--- a/common/Memory.v
+++ b/common/Memory.v
@@ -41,8 +41,6 @@ Require Export Memdata.
Require Export Memtype.
Require Import Lia.
-Definition default_notrap_load_value (chunk : memory_chunk) := Vundef.
-
(* To avoid useless definitions of inductors in extracted code. *)
Local Unset Elimination Schemes.