mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
8977d087c6
classes, and migrate existing targets over. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77126 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
721 B
C++
24 lines
721 B
C++
//===-- ARMTargetInfo.cpp - ARM Target Implementation ---------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "ARM.h"
|
|
#include "llvm/Module.h"
|
|
#include "llvm/Target/TargetRegistry.h"
|
|
using namespace llvm;
|
|
|
|
Target llvm::TheARMTarget, llvm::TheThumbTarget;
|
|
|
|
extern "C" void LLVMInitializeARMTargetInfo() {
|
|
RegisterTarget<Triple::arm, /*HasJIT=*/true>
|
|
X(TheARMTarget, "arm", "ARM");
|
|
|
|
RegisterTarget<Triple::thumb, /*HasJIT=*/true>
|
|
Y(TheThumbTarget, "thumb", "Thumb");
|
|
}
|