From 424df9761ae4f3c9ce91ba785aef111bedd9125a Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Mon, 24 Feb 2020 19:49:56 +0100 Subject: fixes for aarch64 arm ppc ppc64 --- arm/TargetPrinter.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arm/TargetPrinter.ml') diff --git a/arm/TargetPrinter.ml b/arm/TargetPrinter.ml index 517ae0a8..54af7cd5 100644 --- a/arm/TargetPrinter.ml +++ b/arm/TargetPrinter.ml @@ -149,7 +149,7 @@ struct | Section_text -> ".text" | Section_data(i, true) -> failwith "_Thread_local unsupported on this platform" - | Section_data(i, false) | Section_small_data(i, false) -> + | Section_data(i, false) | Section_small_data(i) -> if i then ".data" else common_section () | Section_const i | Section_small_const i -> if i || (not !Clflags.option_fcommon) then ".section .rodata" else "COMM" -- cgit