gcov-tool: Mark {merge,rewrite}_usage with noreturn attribute
2019-06-10 Vladislav Ivanishin <vlad@ispras.ru> * gcov-tool.c (merge_usage, rewrite_usage): Mark with ATTRIBUTE_NORETURN thus making consistent with overlap_usage. From-SVN: r272119
This commit is contained in:
parent
bf38f7e9aa
commit
c31783fd18
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2019-06-10 Vladislav Ivanishin <vlad@ispras.ru>
|
||||
|
||||
* gcov-tool.c (merge_usage, rewrite_usage): Mark with
|
||||
ATTRIBUTE_NORETURN thus making consistent with overlap_usage.
|
||||
|
||||
2019-06-10 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* tree.def (OMP_SCAN): New tree code.
|
||||
|
|
|
@ -188,7 +188,7 @@ static const struct option merge_options[] =
|
|||
|
||||
/* Print merge usage and exit. */
|
||||
|
||||
static void
|
||||
static void ATTRIBUTE_NORETURN
|
||||
merge_usage (void)
|
||||
{
|
||||
fnotice (stderr, "Merge subcomand usage:");
|
||||
|
@ -284,7 +284,7 @@ static const struct option rewrite_options[] =
|
|||
|
||||
/* Print profile rewrite usage and exit. */
|
||||
|
||||
static void
|
||||
static void ATTRIBUTE_NORETURN
|
||||
rewrite_usage (void)
|
||||
{
|
||||
fnotice (stderr, "Rewrite subcommand usage:");
|
||||
|
|
Loading…
Add table
Reference in a new issue