llvm-project/llvm/lib/MC/MCSectionDXContainer.cpp
Chris Bieneman 3adc908b26 [DirectX][MC] Add MC support for DXContainer
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
2022-06-17 21:19:32 -05:00

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 {}