aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp')
-rw-r--r--contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp b/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
deleted file mode 100644
index ad57c600db10..000000000000
--- a/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-//===-- WebAssemblyTargetObjectFile.cpp - WebAssembly Object Info ---------===//
-//
-// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
-// See https://llvm.org/LICENSE.txt for license information.
-// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-//
-//===----------------------------------------------------------------------===//
-///
-/// \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();
-}