llvm/llvm/unittests/Target/AArch64/AArch64InstPrinterTest.cpp

//===- AArch64InstPrinterTest.cpp - AArch64InstPrinter unit tests----------===//
//
// 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/MCAsmInfo.h"
#include "llvm/MC/MCContext.h"
#include "llvm/MC/MCExpr.h"
#include "llvm/MC/MCInst.h"
#include "llvm/MC/MCInstrInfo.h"
#include "llvm/MC/MCRegisterInfo.h"
#include "llvm/MC/MCSubtargetInfo.h"
#include "llvm/Support/raw_ostream.h"

#include "MCTargetDesc/AArch64InstPrinter.h"

#include "gtest/gtest.h"

usingnamespacellvm;

class AArch64InstPrinterTest : public AArch64InstPrinter {};

static std::string AArch64InstPrinterTestPrintAlignedLabel(uint64_t value) {}

TEST(AArch64InstPrinterTest, PrintAlignedLabel) {}