[MC] Remove unused MCStreamer::SwitchSection
authorFangrui Song <i@maskray.me>
Wed, 15 Jun 2022 04:25:56 +0000 (21:25 -0700)
committerFangrui Song <i@maskray.me>
Wed, 15 Jun 2022 04:25:56 +0000 (21:25 -0700)
switchSection should be used instead.

llvm/include/llvm/MC/MCStreamer.h

index c55f68f..e71014b 100644 (file)
@@ -446,9 +446,6 @@ public:
   /// This corresponds to assembler directives like .section, .text, etc.
   virtual void switchSection(MCSection *Section,
                              const MCExpr *Subsection = nullptr);
-  void SwitchSection(MCSection *Section, const MCExpr *Subsection = nullptr) {
-    switchSection(Section, Subsection);
-  }
 
   /// Set the current section where code is being emitted to \p Section.
   /// This is required to update CurSection. This version does not call