Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / lib / MC / MCGOFFStreamer.cpp
blob2b6d5c8e75a706a6e5e8803424900ef042b515b0
1 //===- lib/MC/MCGOFFStreamer.cpp - GOFF Object Output ---------------------===//
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 //===----------------------------------------------------------------------===//
8 //
9 // This file assembles .s files and emits GOFF .o object files.
11 //===----------------------------------------------------------------------===//
13 #include "llvm/MC/MCGOFFStreamer.h"
14 #include "llvm/MC/MCAsmBackend.h"
15 #include "llvm/MC/MCAssembler.h"
16 #include "llvm/MC/MCCodeEmitter.h"
17 #include "llvm/MC/MCContext.h"
18 #include "llvm/MC/TargetRegistry.h"
20 using namespace llvm;
22 MCGOFFStreamer::~MCGOFFStreamer() {}
24 MCStreamer *llvm::createGOFFStreamer(MCContext &Context,
25 std::unique_ptr<MCAsmBackend> &&MAB,
26 std::unique_ptr<MCObjectWriter> &&OW,
27 std::unique_ptr<MCCodeEmitter> &&CE) {
28 MCGOFFStreamer *S =
29 new MCGOFFStreamer(Context, std::move(MAB), std::move(OW), std::move(CE));
30 return S;