[InstCombine] Remove insertRangeTest code that handles the equality case.
[llvm-complete.git] / lib / MC / MCSectionXCOFF.cpp
blobd1a637345024f9c3278ae7d2547b26678b7dd7e1
1 //===- lib/MC/MCSectionXCOFF.cpp - XCOFF Code Section Representation ------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "llvm/MC/MCSectionXCOFF.h"
10 #include "llvm/MC/MCAsmInfo.h"
11 #include "llvm/MC/MCExpr.h"
12 #include "llvm/Support/raw_ostream.h"
14 using namespace llvm;
16 MCSectionXCOFF::~MCSectionXCOFF() = default;
18 void MCSectionXCOFF::PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T,
19 raw_ostream &OS,
20 const MCExpr *Subsection) const {
21 if (getKind().isText()) {
22 OS << "\t.csect " << getSectionName() << "["
23 << "PR"
24 << "]" << '\n';
25 return;
28 report_fatal_error("Printing for this SectionKind is unimplemented.");
31 bool MCSectionXCOFF::UseCodeAlign() const { return getKind().isText(); }
33 bool MCSectionXCOFF::isVirtualSection() const { return !getKind().isCommon(); }