Files
compute-runtime/core/compiler_interface/create_main.cpp
Mateusz Jablonski 6ef7fc726b Update copyright headers
Change-Id: I05eaad34f5af15685c6ad6d5bb3078f21dd1e0af
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2020-02-22 23:44:04 +01:00

20 lines
370 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "cif/common/cif_main.h"
#include "cif/common/library_api.h"
namespace NEO {
#if defined(__clang__)
__attribute__((no_sanitize("undefined")))
#endif
CIF::CIFMain *
createMainNoSanitize(CIF::CreateCIFMainFunc_t createFunc) {
return createFunc();
}
} // namespace NEO