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 --- backend/JsonAST.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/JsonAST.ml') diff --git a/backend/JsonAST.ml b/backend/JsonAST.ml index 8905e252..c73bf30d 100644 --- a/backend/JsonAST.ml +++ b/backend/JsonAST.ml @@ -31,7 +31,7 @@ let pp_section pp sec = pp_jobject_end pp in match sec with | Section_text -> pp_simple "Text" - | Section_data init -> pp_complex "Data" init + | Section_data(init, thread_local) -> pp_complex "Data" init (* FIXME *) | Section_small_data init -> pp_complex "Small Data" init | Section_const init -> pp_complex "Const" init | Section_small_const init -> pp_complex "Small Const" init -- cgit