aboutsummaryrefslogtreecommitdiffstats
path: root/arm
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-04-09 16:27:57 +0200
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-04-09 16:27:57 +0200
commitf2e6e7ff8aedb94b42da53ddc6bcd1c9ada38b80 (patch)
treed7a43f7d0d1f1a8eaf984817d17eaed8510ddd31 /arm
parentdf5dbeebdaed3fd7df3ea9a6bdb9f36e07c288e9 (diff)
parentf38ba5c864ca09b2be8906ae2b0a81e8a57b734b (diff)
downloadcompcert-kvx-f2e6e7ff8aedb94b42da53ddc6bcd1c9ada38b80.tar.gz
compcert-kvx-f2e6e7ff8aedb94b42da53ddc6bcd1c9ada38b80.zip
Merge remote-tracking branch 'origin/mppa-thread' into mppa-work
Diffstat (limited to 'arm')
-rw-r--r--arm/TargetPrinter.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/arm/TargetPrinter.ml b/arm/TargetPrinter.ml
index 03e06a65..54af7cd5 100644
--- a/arm/TargetPrinter.ml
+++ b/arm/TargetPrinter.ml
@@ -147,7 +147,9 @@ struct
let name_of_section = function
| Section_text -> ".text"
- | Section_data i | Section_small_data i ->
+ | Section_data(i, true) ->
+ failwith "_Thread_local unsupported on this platform"
+ | 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"