2022-06-03 19:15:11 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
2022-11-01 20:26:26 +00:00
|
|
|
* Copyright (C) 2017 Intel Corporation. All rights reserved.
|
2017-06-07 20:24:32 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2018-09-27 19:38:15 +00:00
|
|
|
#include "spdk/config.h"
|
2017-06-07 20:24:32 +00:00
|
|
|
#if SPDK_CONFIG_VTUNE
|
|
|
|
|
|
|
|
/* Disable warnings triggered by the VTune code */
|
|
|
|
#if defined(__GNUC__) && \
|
|
|
|
__GNUC__ > 4 || \
|
|
|
|
(__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
|
|
|
|
#pragma GCC diagnostic ignored "-Wsign-compare"
|
2018-03-16 22:50:04 +00:00
|
|
|
#if __GNUC__ >= 7
|
|
|
|
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
|
|
|
|
#endif
|
2017-06-07 20:24:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "ittnotify_static.c"
|
|
|
|
|
|
|
|
#endif
|