mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 17:00:59 +08:00
19 lines
452 B
C
19 lines
452 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2021 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "shared/source/utilities/const_stringref.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
namespace CompilerWarnings {
|
||
|
|
|
||
|
|
static constexpr ConstStringRef recompiledFromIr = "warning: module got recompiled from IR because provided native binary is incompatible with underlying device and/or driver [-Wrecompiled-from-ir]";
|
||
|
|
|
||
|
|
} // namespace CompilerWarnings
|
||
|
|
} // namespace NEO
|