AMDGPU: Mark test as XFAIL in expensive_checks builds
[llvm-project.git] / llvm / lib / Target / PowerPC / PPCTargetStreamer.h
blobdaf5b93ff21f06a2545af915810d55d92de72185
1 //===- PPCTargetStreamer.h - PPC Target Streamer ----------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIB_TARGET_POWERPC_PPCTARGETSTREAMER_H
10 #define LLVM_LIB_TARGET_POWERPC_PPCTARGETSTREAMER_H
12 #include "llvm/ADT/StringRef.h"
13 #include "llvm/MC/MCExpr.h"
14 #include "llvm/MC/MCStreamer.h"
16 namespace llvm {
18 class MCExpr;
19 class MCSymbol;
20 class MCSymbolELF;
22 class PPCTargetStreamer : public MCTargetStreamer {
23 public:
24 PPCTargetStreamer(MCStreamer &S);
25 ~PPCTargetStreamer() override;
27 virtual void emitTCEntry(const MCSymbol &S,
28 MCSymbolRefExpr::VariantKind Kind){};
29 virtual void emitMachine(StringRef CPU){};
30 virtual void emitAbiVersion(int AbiVersion){};
31 virtual void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset){};
34 } // end namespace llvm
36 #endif // LLVM_LIB_TARGET_POWERPC_PPCTARGETSTREAMER_H