llvm-project/llvm/lib/MC/MCSectionDXContainer.cpp
Fangrui Song 95f983f823 [MC] Change Subsection parameters from const MCExpr * to uint32_t
Follow-up to 05ba5c0648ae5e80d5afce270495bf3b1eef9af4. uint32_t is
preferred over const MCExpr * in the section stack uses because it
should only be evaluated once. Change the paramter type to match.
2024-06-22 21:48:11 -07:00

16 lines
649 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 &,
uint32_t) const {}