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 0918967 commit 79818f8Copy full SHA for 79818f8
llvm/lib/Target/X86/X86AsmPrinter.h
@@ -26,7 +26,7 @@ class MCStreamer;
26
class MCSymbol;
27
28
class LLVM_LIBRARY_VISIBILITY X86AsmPrinter : public AsmPrinter {
29
- const X86Subtarget *Subtarget;
+ const X86Subtarget *Subtarget = nullptr;
30
StackMaps SM;
31
FaultMaps FM;
32
std::unique_ptr<MCCodeEmitter> CodeEmitter;
@@ -60,7 +60,7 @@ class LLVM_LIBRARY_VISIBILITY X86AsmPrinter : public AsmPrinter {
60
// to emit any necessary padding-NOPs.
61
void emitShadowPadding(MCStreamer &OutStreamer, const MCSubtargetInfo &STI);
62
private:
63
- const MachineFunction *MF;
+ const MachineFunction *MF = nullptr;
64
bool InShadow = false;
65
66
// RequiredShadowSize holds the length of the shadow specified in the most
0 commit comments