Files
compute-runtime/shared/source/debugger/DebuggerStateSaveHeader.h
Neil R. Spruit b580e4e023 feature: Enable Support for reading updated StateSaveHeaders
Related-To: NEO-16518

Signed-off-by: Neil R. Spruit <neil.r.spruit@intel.com>
2025-11-19 16:42:42 +01:00

23 lines
431 B
C

/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "config.h"
#include <stdint.h>
#ifdef BRANCH_TYPE
#define STRINGIFY_HELPER(x) #x
#define STRINGIFY(x) STRINGIFY_HELPER(x)
// clang-format off
#define BRANCH_HEADER_PATH STRINGIFY(BRANCH_TYPE/StateSaveAreaHeaderWrapper.h)
// clang-format on
#include BRANCH_HEADER_PATH
#else
#include "StateSaveAreaHeaderWrapper.h"
#endif