aboutsummaryrefslogtreecommitdiffstats
path: root/backend/PrintAsm.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2016-11-10 10:35:35 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2016-11-10 10:35:35 +0100
commit4eb3efa2ccbf58c59a8d181c7d616b3d0c06e02b (patch)
tree63a46d2ec6462679523877c6e8d1b54c298bf16c /backend/PrintAsm.ml
parent3f2584ada2c61c2648366a0318bb6996909c5623 (diff)
downloadcompcert-kvx-4eb3efa2ccbf58c59a8d181c7d616b3d0c06e02b.tar.gz
compcert-kvx-4eb3efa2ccbf58c59a8d181c7d616b3d0c06e02b.zip
Use 64 bit address in debug information.
Address constants need to be 64bit also in the debug information. Bug 20335
Diffstat (limited to 'backend/PrintAsm.ml')
-rw-r--r--backend/PrintAsm.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/PrintAsm.ml b/backend/PrintAsm.ml
index 8e43a050..9292745d 100644
--- a/backend/PrintAsm.ml
+++ b/backend/PrintAsm.ml
@@ -113,6 +113,7 @@ module Printer(Target:TARGET) =
let section = Target.section
let symbol = Target.symbol
let comment = Target.comment
+ let address = Target.address
end
module DebugPrinter = DwarfPrinter (DwarfTarget)