24 lines · cpp
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-exception6//7//===----------------------------------------------------------------------===//8///9/// \file10/// This file defines the functions of the WebAssembly-specific subclass11/// of TargetLoweringObjectFile.12///13//===----------------------------------------------------------------------===//14 15#include "WebAssemblyTargetObjectFile.h"16 17using namespace llvm;18 19void WebAssemblyTargetObjectFile::Initialize(MCContext &Ctx,20 const TargetMachine &TM) {21 TargetLoweringObjectFileWasm::Initialize(Ctx, TM);22 InitializeWasm();23}24