view gcc/testsuite/gcc.dg/Wpragmas-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */

#pragma GCC push_options
#pragma GCC optimize ("-fno-lto") /* { dg-warning "bad option" } */
int main(void){return 0;}
#pragma GCC pop_options

/* ???  The FEs still apply the pragma string as optimize attribute to
   all functions thus the diagnostic will be repeated for each function
   affected.  */
/* { dg-message "bad option" "" { target *-*-* } 0 } */