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 22c98c4 commit e8d7360Copy full SHA for e8d7360
IGC/Compiler/CISACodeGen/CISABuilder.cpp
@@ -4792,6 +4792,7 @@ namespace IGC
4792
IGC_ASSERT(name.size() <= vISA::MAX_SYMBOL_NAME_LENGTH);
4793
4794
vISA::GenSymEntry sEntry;
4795
+ memset(sEntry.s_name, '0', vISA::MAX_SYMBOL_NAME_LENGTH);
4796
strcpy_s(sEntry.s_name, vISA::MAX_SYMBOL_NAME_LENGTH, name.str().c_str());
4797
MDNode* md = pGlobal->getMetadata("ConstSampler");
4798
if (md)
0 commit comments