From b1474d30f9ef6570beb3a9263ae520dc1ac1bb3a Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Wed, 28 Jan 2015 20:55:13 +0100 Subject: varpool.c (tls_model_names): Fix names. * varpool.c (tls_model_names): Fix names. (varpool_node::dump): Dump tls- prefix for tls models. From-SVN: r220213 --- gcc/varpool.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/varpool.c') diff --git a/gcc/varpool.c b/gcc/varpool.c index 9c8f1eb..bd9de6b 100644 --- a/gcc/varpool.c +++ b/gcc/varpool.c @@ -58,9 +58,9 @@ along with GCC; see the file COPYING3. If not see #include "context.h" #include "omp-low.h" -const char * const tls_model_names[]={"none", "tls-emulated", "tls-real", - "tls-global-dynamic", "tls-local-dynamic", - "tls-initial-exec", "tls-local-exec"}; +const char * const tls_model_names[]={"none", "emulated", + "global-dynamic", "local-dynamic", + "initial-exec", "local-exec"}; /* List of hooks triggered on varpool_node events. */ struct varpool_node_hook_list { @@ -251,7 +251,7 @@ varpool_node::dump (FILE *f) if (writeonly) fprintf (f, " write-only"); if (tls_model) - fprintf (f, " %s", tls_model_names [tls_model]); + fprintf (f, " tls-%s", tls_model_names [tls_model]); fprintf (f, "\n"); } -- cgit v1.1