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 9a807b8 commit c956f91Copy full SHA for c956f91
llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.h
@@ -22,9 +22,9 @@ class RISCVELFStreamer : public MCELFStreamer {
22
23
enum ElfMappingSymbol { EMS_None, EMS_Instructions, EMS_Data };
24
25
- int64_t MappingSymbolCounter;
+ int64_t MappingSymbolCounter = 0;
26
DenseMap<const MCSection *, ElfMappingSymbol> LastMappingSymbols;
27
- ElfMappingSymbol LastEMS;
+ ElfMappingSymbol LastEMS = EMS_None;
28
29
public:
30
RISCVELFStreamer(MCContext &C, std::unique_ptr<MCAsmBackend> MAB,
0 commit comments