summaryrefslogtreecommitdiff
path: root/gcc/gimplify.c
diff options
context:
space:
mode:
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2015-11-12 13:52:30 +0000
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2015-11-12 13:52:30 +0000
commit296008a9d4e2305dbf691ffcae802abcb0fe29a9 (patch)
tree6e1ece871e650c2072bd7987c4cc886977e28517 /gcc/gimplify.c
parent3cf4960ab366331d770ffe255e8876c8afac213f (diff)
downloadgcc-296008a9d4e2305dbf691ffcae802abcb0fe29a9.tar.gz
missed error format change in previous commit
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230257 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r--gcc/gimplify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c
index 74d8765950f..f5bd637e775 100644
--- a/gcc/gimplify.c
+++ b/gcc/gimplify.c
@@ -5944,9 +5944,9 @@ oacc_default_clause (struct gimplify_omp_ctx *ctx, tree decl, unsigned flags)
about them. */
else if (ctx->default_kind == OMP_CLAUSE_DEFAULT_NONE)
{
- error ("%qE not specified in enclosing OpenACC %s construct",
+ error ("%qE not specified in enclosing OpenACC %qs construct",
DECL_NAME (lang_hooks.decls.omp_report_decl (decl)), rkind);
- error_at (ctx->location, "enclosing OpenACC %s construct", rkind);
+ error_at (ctx->location, "enclosing OpenACC %qs construct", rkind);
}
else
gcc_checking_assert (ctx->default_kind == OMP_CLAUSE_DEFAULT_SHARED);