view gcc/testsuite/gcc.dg/pure-3.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

/* PR tree-optimization/83559 - -Wsuggest-attribute=const conflicts with
   -Wattributes warning about const attribute on function returning void
   { dg-do compile { target nonpic } }
   { dg-options "-O2 -Wsuggest-attribute=pure" } */

int global;

int f_i_v (void)    /* { dg-warning "candidate for attribute .pure." } */
{
  return global;
}

int f_i ()          /* { dg-warning "candidate for attribute .pure." } */
{
  return global;
}

void f_v_v (void)   /* { dg-bogus "candidate" } */
{
}

void f_v ()         /* { dg-bogus "candidate" } */
{
}