[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / llvm / lib / MC / MCGOFFStreamer.cpp
blob58d13c9f3788534f2b1b5a9b41ca7b3c70b6f1d4
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 bool RelaxAll) {
29 MCGOFFStreamer *S =
30 new MCGOFFStreamer(Context, std::move(MAB), std::move(OW), std::move(CE));
31 if (RelaxAll)
32 S->getAssembler().setRelaxAll(true);
33 return S;