aboutsummaryrefslogtreecommitdiffstats
path: root/checklink
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-04-14 16:18:46 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-04-14 16:18:46 +0200
commite42febd5a88c2bf04227f1cd4ead947c51989ec1 (patch)
tree0661131709c95dc77a5c0583f66caf219a84e8cf /checklink
parent03ad26aa9d2762655b508f7142d0aed9916da83b (diff)
parentb597ce896a8a9cd7c3ed028a34e0612229d1a36a (diff)
downloadcompcert-e42febd5a88c2bf04227f1cd4ead947c51989ec1.tar.gz
compcert-e42febd5a88c2bf04227f1cd4ead947c51989ec1.zip
Merge branch 'dwarf' of /local/schommer/trunk/build/compcert.ppc/compcert into dwarf
Diffstat (limited to 'checklink')
-rw-r--r--checklink/Check.ml4
1 files changed, 4 insertions, 0 deletions
diff --git a/checklink/Check.ml b/checklink/Check.ml
index db0159c4..4924744c 100644
--- a/checklink/Check.ml
+++ b/checklink/Check.ml
@@ -75,6 +75,8 @@ let name_of_section_Linux: section_name -> string = function
| Section_literal -> ".rodata.cst8"
| Section_jumptable -> ".text"
| Section_user(s, wr, ex) -> s
+| Section_debug_info -> ".debug_info"
+| Section_debug_abbrev -> ".debug_abbrev"
(** Adapted from CompCert *)
let name_of_section_Diab: section_name -> string = function
@@ -87,6 +89,8 @@ let name_of_section_Diab: section_name -> string = function
| Section_literal -> ".text"
| Section_jumptable -> ".text"
| Section_user(s, wr, ex) -> s
+| Section_debug_info -> ".debug_info"
+| Section_debug_abbrev -> ".debug_abbrev"
(** Taken from CompCert *)
let name_of_section: section_name -> string =