mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-02 10:16:06 +00:00

DXContainer files resemble traditional object files in that they are comprised of parts which resemble sections. Adding DXContainer as an object file format in the MC layer will allow emitting DXContainer objects through the normal object emission pipeline. Differential Revision: https://reviews.llvm.org/D127165
16 lines
655 B
C++
16 lines
655 B
C++
//===- lib/MC/MCSectionDXContainer.cpp - DXContainer Section --------------===//
|
|
//
|
|
// 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/MCSectionDXContainer.h"
|
|
|
|
using namespace llvm;
|
|
|
|
void MCSectionDXContainer::printSwitchToSection(const MCAsmInfo &,
|
|
const Triple &, raw_ostream &,
|
|
const MCExpr *) const {}
|