view gcc/testsuite/c-c++-common/pr69126-2-short.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { dg-options "-Wdeprecated-declarations" } */

/* IGNORE_SHORT_MACRO is < 32 characters long, and hence its location
   can be stored without needing an ad-hoc location.  */

#define IGNORE_SHORT_MACRO  _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
__attribute__((deprecated)) void f();
int main() {
    IGNORE_SHORT_MACRO
    f();
}