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 4eb107c commit bba8a76Copy full SHA for bba8a76
llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
@@ -220,9 +220,7 @@ bool shouldInstrumentWithCalls(const Triple &TargetTriple) {
220
/// using tagged pointers.
221
class HWAddressSanitizer {
222
public:
223
- explicit HWAddressSanitizer(Module &M, bool CompileKernel = false,
224
- bool Recover = false)
225
- : M(M) {
+ HWAddressSanitizer(Module &M, bool CompileKernel, bool Recover) : M(M) {
226
this->Recover = ClRecover.getNumOccurrences() > 0 ? ClRecover : Recover;
227
this->CompileKernel = ClEnableKhwasan.getNumOccurrences() > 0
228
? ClEnableKhwasan
0 commit comments