[N/N] compiler interface refactor - move to core

Change-Id: I029e3cd7a6adde9df97a0a7760ecbf5d25d8f501
This commit is contained in:
Jaroslaw Chodor
2019-10-22 12:09:08 +02:00
parent c8664b50a4
commit 28464ab2d4
38 changed files with 131 additions and 114 deletions

View 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