diff options
Diffstat (limited to 'gcc/c-family/c-attribs.c')
-rw-r--r-- | gcc/c-family/c-attribs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-family/c-attribs.c b/gcc/c-family/c-attribs.c index 6d515dc..99b6630 100644 --- a/gcc/c-family/c-attribs.c +++ b/gcc/c-family/c-attribs.c @@ -5191,8 +5191,8 @@ handle_patchable_function_entry_attribute (tree *, tree name, tree args, if (tree_to_uhwi (val) > USHRT_MAX) { warning (OPT_Wattributes, - "%qE attribute argument %qE is out of range (> 65535)", - name, val); + "%qE attribute argument %qE exceeds %u", + name, val, USHRT_MAX); *no_add_attrs = true; return NULL_TREE; } |