mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 04:12:57 +08:00
[N/N] compiler interface refactor - move to core
Change-Id: I029e3cd7a6adde9df97a0a7760ecbf5d25d8f501
This commit is contained in:
19
core/compiler_interface/create_main.cpp
Normal file
19
core/compiler_interface/create_main.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Copyright (C) 2017-2019 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
|
||||
Reference in New Issue
Block a user