diff options
Diffstat (limited to 'gcc/d/decl.cc')
-rw-r--r-- | gcc/d/decl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/d/decl.cc b/gcc/d/decl.cc index 7e612e1..c80bb8a 100644 --- a/gcc/d/decl.cc +++ b/gcc/d/decl.cc @@ -968,7 +968,7 @@ public: return; } - if (global.params.verbose) + if (global.params.v.verbose) message ("function %s", d->toPrettyChars ()); tree old_context = start_function (d); @@ -1554,7 +1554,7 @@ get_symbol_decl (Declaration *decl) /* Symbol is going in thread local storage. */ if (decl->isThreadlocal () && !DECL_ARTIFICIAL (decl->csym)) { - if (global.params.vtls) + if (global.params.v.tls) message (decl->loc, "`%s` is thread local", decl->toChars ()); set_decl_tls_model (decl->csym, decl_default_tls_model (decl->csym)); |