We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b26f997 commit cf6d8b2Copy full SHA for cf6d8b2
IGC/AdaptorCommon/ProcessFuncAttributes.cpp
@@ -447,7 +447,8 @@ bool ProcessFuncAttributes::runOnModule(Module &M) {
447
// builtins should not be externally linked, they will always be resolved by IGC
448
return !(F->hasFnAttribute("OclBuiltin") || F->getName().startswith("__builtin_") ||
449
F->getName().startswith("__igcbuiltin_") || F->getName().startswith("llvm.") ||
450
- F->getName().equals("printf") || Regex("^_Z[0-9]+__spirv_").match(F->getName()));
+ F->getName().equals("printf") || Regex("^_Z[0-9]+__spirv_").match(F->getName()) ||
451
+ Regex("^_Z[0-9]+__builtin_spirv").match(F->getName()));
452
}
453
return false;
454
};
0 commit comments