mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-05-14 11:06:11 +00:00

This support was partial and temporary. Now that we have wasm object file support its no longer needed. Differential Revision: https://reviews.llvm.org/D48744 llvm-svn: 337222
26 lines
858 B
C++
26 lines
858 B
C++
//===-- WebAssemblyTargetObjectFile.cpp - WebAssembly Object Info ---------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// This file defines the functions of the WebAssembly-specific subclass
|
|
/// of TargetLoweringObjectFile.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "WebAssemblyTargetObjectFile.h"
|
|
#include "WebAssemblyTargetMachine.h"
|
|
|
|
using namespace llvm;
|
|
|
|
void WebAssemblyTargetObjectFile::Initialize(MCContext &Ctx,
|
|
const TargetMachine &TM) {
|
|
TargetLoweringObjectFileWasm::Initialize(Ctx, TM);
|
|
InitializeWasm();
|
|
}
|