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 b48ea2d commit c4a799bCopy full SHA for c4a799b
llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
@@ -293,8 +293,8 @@ class HWAddressSanitizer {
293
: M(M), SSI(SSI) {
294
this->Recover = optOr(ClRecover, Recover);
295
this->CompileKernel = optOr(ClEnableKhwasan, CompileKernel);
296
- this->Rng =
297
- ClRandomSkipRate.getNumOccurrences() ? M.createRNG("hwasan") : nullptr;
+ this->Rng = ClRandomSkipRate.getNumOccurrences() ? M.createRNG(DEBUG_TYPE)
+ : nullptr;
298
299
initializeModule();
300
}
0 commit comments