diff options
Diffstat (limited to 'contrib/llvm/lib/MC/MCSectionXCOFF.cpp')
-rw-r--r-- | contrib/llvm/lib/MC/MCSectionXCOFF.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/contrib/llvm/lib/MC/MCSectionXCOFF.cpp b/contrib/llvm/lib/MC/MCSectionXCOFF.cpp deleted file mode 100644 index d1a637345024..000000000000 --- a/contrib/llvm/lib/MC/MCSectionXCOFF.cpp +++ /dev/null @@ -1,33 +0,0 @@ -//===- lib/MC/MCSectionXCOFF.cpp - XCOFF Code Section Representation ------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -#include "llvm/MC/MCSectionXCOFF.h" -#include "llvm/MC/MCAsmInfo.h" -#include "llvm/MC/MCExpr.h" -#include "llvm/Support/raw_ostream.h" - -using namespace llvm; - -MCSectionXCOFF::~MCSectionXCOFF() = default; - -void MCSectionXCOFF::PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T, - raw_ostream &OS, - const MCExpr *Subsection) const { - if (getKind().isText()) { - OS << "\t.csect " << getSectionName() << "[" - << "PR" - << "]" << '\n'; - return; - } - - report_fatal_error("Printing for this SectionKind is unimplemented."); -} - -bool MCSectionXCOFF::UseCodeAlign() const { return getKind().isText(); } - -bool MCSectionXCOFF::isVirtualSection() const { return !getKind().isCommon(); } |