blob: c98a55df83ba58cfc76b4ef4b5391c3df38d00b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//===- JSBackendMCTargetDesc.h - JS Backend Target Descriptions -*- C++ -*-===//
//
// 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.
//
//===----------------------------------------------------------------------===//
#ifndef JSBACKENDMCTARGETDESC_H
#define JSBACKENDMCTARGETDESC_H
#include "llvm/Support/TargetRegistry.h"
namespace llvm {
extern Target TheJSBackendTarget;
} // End llvm namespace
#endif
|