Home | History | Annotate | Download | only in tcpdump

Lines Matching full:diag_pragma

250 #  define DIAG_PRAGMA(x) DIAG_DO_PRAGMA(GCC diagnostic x)
252 # define DIAG_OFF(x) DIAG_PRAGMA(push) DIAG_PRAGMA(ignored DIAG_JOINSTR(-W,x))
253 # define DIAG_ON(x) DIAG_PRAGMA(pop)
255 # define DIAG_OFF(x) DIAG_PRAGMA(ignored DIAG_JOINSTR(-W,x))
256 # define DIAG_ON(x) DIAG_PRAGMA(warning DIAG_JOINSTR(-W,x))
259 # define DIAG_PRAGMA(x) DIAG_DO_PRAGMA(clang diagnostic x)
260 # define DIAG_OFF(x) DIAG_PRAGMA(push) DIAG_PRAGMA(ignored DIAG_JOINSTR(-W,x))
261 # define DIAG_ON(x) DIAG_PRAGMA(pop)