mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 21:05:51 +00:00
38aceb8714
No new testcases. However, this patch makes all supported JIT testcases in test/ExecutionEngine pass on Sparc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192176 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
757 B
C++
24 lines
757 B
C++
//===-- SparcTargetInfo.cpp - Sparc Target Implementation -----------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "Sparc.h"
|
|
#include "llvm/IR/Module.h"
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
using namespace llvm;
|
|
|
|
Target llvm::TheSparcTarget;
|
|
Target llvm::TheSparcV9Target;
|
|
|
|
extern "C" void LLVMInitializeSparcTargetInfo() {
|
|
RegisterTarget<Triple::sparc, /*HasJIT=*/ true>
|
|
X(TheSparcTarget, "sparc", "Sparc");
|
|
RegisterTarget<Triple::sparcv9, /*HasJIT=*/ true>
|
|
Y(TheSparcV9Target, "sparcv9", "Sparc V9");
|
|
}
|