aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Cprint.ml
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-02-24 15:56:16 +0100
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-02-24 15:56:16 +0100
commit034eff1d4d4f168008cded71b73bd39066b97997 (patch)
treed718cf295f51a81a5d7bc2b182f8a9cbbfb77089 /cparser/Cprint.ml
parentba21b0ae95189f2d40cca38c502c1ca583a0e1bb (diff)
downloadcompcert-kvx-034eff1d4d4f168008cded71b73bd39066b97997.tar.gz
compcert-kvx-034eff1d4d4f168008cded71b73bd39066b97997.zip
begin implementing thread_local storage
Diffstat (limited to 'cparser/Cprint.ml')
-rw-r--r--cparser/Cprint.ml3
1 files changed, 3 insertions, 0 deletions
diff --git a/cparser/Cprint.ml b/cparser/Cprint.ml
index 9aeec421..78970990 100644
--- a/cparser/Cprint.ml
+++ b/cparser/Cprint.ml
@@ -361,6 +361,9 @@ let storage pp = function
| Storage_default -> ()
| Storage_extern -> fprintf pp "extern "
| Storage_static -> fprintf pp "static "
+ | Storage_thread_local -> fprintf pp "_Thread_local"
+ | Storage_thread_local_extern -> fprintf pp "extern _Thread_local"
+ | Storage_thread_local_static -> fprintf pp "static _Thread_local"
| Storage_auto -> () (* used only in blocks, where it can be omitted *)
| Storage_register -> fprintf pp "register "