1 //===-- SPIRVTargetStreamer.h - SPIRV Target Streamer ----------*- C++ -*--===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LIB_TARGET_SPIRV_MCTARGETDESC_SPIRVTARGETSTREAMER_H
10 #define LIB_TARGET_SPIRV_MCTARGETDESC_SPIRVTARGETSTREAMER_H
12 #include "llvm/MC/MCStreamer.h"
18 class SPIRVTargetStreamer
: public MCTargetStreamer
{
20 SPIRVTargetStreamer(MCStreamer
&S
);
21 ~SPIRVTargetStreamer() override
;
23 void changeSection(const MCSection
*CurSection
, MCSection
*Section
,
24 const MCExpr
*SubSection
, raw_ostream
&OS
) override
{}
28 #endif // LIB_TARGET_SPIRV_MCTARGETDESC_SPIRVTARGETSTREAMER_H_