mirror of
https://github.com/intel/intel-graphics-compiler.git
synced 2025-11-04 08:21:06 +08:00
Remove workaround -Wno-error=implicit-int
Previously, some workloads used implicit int types in function definitions. With LLVM 15, implicit ints are treated as errors. The workaround to disable this error has now been removed, so IGC enforces the same behavior as LLVM 15 and treats implicit ints as errors.
This commit is contained in:
@ -1353,9 +1353,6 @@ bool CClangTranslationBlock::TranslateClang(const TranslateClangArgs *pInputArgs
|
||||
optionsEx += " -U__IMAGE_SUPPORT__";
|
||||
}
|
||||
|
||||
// TODO: Workaround - remove after some time to be consistent with LLVM15+ behavior
|
||||
optionsEx += " -Wno-error=implicit-int";
|
||||
|
||||
IOCLFEBinaryResult *pResultPtr = NULL;
|
||||
int res = 0;
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user