mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 14:26:12 +00:00

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.
16 lines
649 B
C++
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 {}
|