Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(853)

Unified Diff: lib/Target/JSBackend/MCTargetDesc/JSBackendMCTargetDesc.cpp

Issue 1692803002: Remove Emscripten support (Closed) Base URL: https://chromium.googlesource.com/a/native_client/pnacl-llvm.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: lib/Target/JSBackend/MCTargetDesc/JSBackendMCTargetDesc.cpp
diff --git a/lib/Target/JSBackend/MCTargetDesc/JSBackendMCTargetDesc.cpp b/lib/Target/JSBackend/MCTargetDesc/JSBackendMCTargetDesc.cpp
deleted file mode 100644
index f7ba0686839610c558525b5d74a36684708f483f..0000000000000000000000000000000000000000
--- a/lib/Target/JSBackend/MCTargetDesc/JSBackendMCTargetDesc.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-//===-- JSBackendMCTargetDesc.cpp - JS Backend Target Descriptions --------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file provides asm.js specific target descriptions.
-//
-//===----------------------------------------------------------------------===//
-
-#include "JSBackendMCTargetDesc.h"
-#include "llvm/MC/MCCodeGenInfo.h"
-#include "llvm/Support/TargetRegistry.h"
-using namespace llvm;
-
-static MCCodeGenInfo *createJSBackendMCCodeGenInfo(StringRef Triple, Reloc::Model RM,
- CodeModel::Model CM,
- CodeGenOpt::Level OL) {
- MCCodeGenInfo *X = new MCCodeGenInfo();
- X->InitMCCodeGenInfo(RM, CM, OL);
- return X;
-}
-
-// Force static initialization.
-extern "C" void LLVMInitializeJSBackendTargetMC() {
- // Register the MC codegen info.
- RegisterMCCodeGenInfoFn C(TheJSBackendTarget, createJSBackendMCCodeGenInfo);
-}
« no previous file with comments | « lib/Target/JSBackend/MCTargetDesc/JSBackendMCTargetDesc.h ('k') | lib/Target/JSBackend/MCTargetDesc/LLVMBuild.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698