2009-07-15 08:35:19 +02:00
|
|
|
//===-- 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-19 01:03:22 +02:00
|
|
|
#include "ARM.h"
|
2009-07-15 08:35:19 +02:00
|
|
|
#include "llvm/Module.h"
|
2011-08-24 20:08:43 +02:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2009-07-15 08:35:19 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-07-26 07:03:33 +02:00
|
|
|
Target llvm::TheARMTarget, llvm::TheThumbTarget;
|
2009-07-15 08:35:19 +02:00
|
|
|
|
|
|
|
extern "C" void LLVMInitializeARMTargetInfo() {
|
2009-07-26 07:03:33 +02:00
|
|
|
RegisterTarget<Triple::arm, /*HasJIT=*/true>
|
|
|
|
X(TheARMTarget, "arm", "ARM");
|
2009-07-15 08:35:19 +02:00
|
|
|
|
2009-07-26 07:03:33 +02:00
|
|
|
RegisterTarget<Triple::thumb, /*HasJIT=*/true>
|
|
|
|
Y(TheThumbTarget, "thumb", "Thumb");
|
2009-07-15 08:35:19 +02:00
|
|
|
}
|