[WebAssembly] Add new target feature in support of 'extended-const' proposal
[llvm-project.git] / llvm / lib / Target / WebAssembly / WebAssemblyTargetObjectFile.cpp
blobad57c600db101038981064e603f6aabbedafb007
1 //===-- WebAssemblyTargetObjectFile.cpp - WebAssembly Object Info ---------===//
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 /// \file
10 /// This file defines the functions of the WebAssembly-specific subclass
11 /// of TargetLoweringObjectFile.
12 ///
13 //===----------------------------------------------------------------------===//
15 #include "WebAssemblyTargetObjectFile.h"
16 #include "WebAssemblyTargetMachine.h"
18 using namespace llvm;
20 void WebAssemblyTargetObjectFile::Initialize(MCContext &Ctx,
21 const TargetMachine &TM) {
22 TargetLoweringObjectFileWasm::Initialize(Ctx, TM);
23 InitializeWasm();