llvm/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp

//===-- PPCMCExpr.cpp - PPC specific MC expression classes ----------------===//
//
// 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 "PPCMCExpr.h"
#include "PPCFixupKinds.h"
#include "llvm/MC/MCAsmInfo.h"
#include "llvm/MC/MCAssembler.h"
#include "llvm/MC/MCContext.h"
#include "llvm/MC/MCObjectStreamer.h"

usingnamespacellvm;

#define DEBUG_TYPE

const PPCMCExpr *PPCMCExpr::create(VariantKind Kind, const MCExpr *Expr,
                                   MCContext &Ctx) {}

void PPCMCExpr::printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const {}

bool
PPCMCExpr::evaluateAsConstant(int64_t &Res) const {}

int64_t
PPCMCExpr::evaluateAsInt64(int64_t Value) const {}

bool PPCMCExpr::evaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm,
                                          const MCFixup *Fixup) const {}

void PPCMCExpr::visitUsedExpr(MCStreamer &Streamer) const {}