summaryrefslogtreecommitdiff
path: root/lib/Target/PIC16/TargetInfo/PIC16TargetInfo.cpp
blob: 2a88fe52c9afb2ff52ca20778ec4ce57b75c7343 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//===-- PIC16TargetInfo.cpp - PIC16 Target Implementation -----------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "PIC16.h"
#include "llvm/Module.h"
#include "llvm/Target/TargetRegistry.h"
using namespace llvm;

Target llvm::ThePIC16Target;

static unsigned PIC16_TripleMatchQuality(const std::string &TT) {
  return 0;
}

static unsigned PIC16_ModuleMatchQuality(const Module &M) {
  return 0;
}

Target llvm::TheCooperTarget;

static unsigned Cooper_TripleMatchQuality(const std::string &TT) {
  return 0;
}

static unsigned Cooper_ModuleMatchQuality(const Module &M) {
  return 0;
}

extern "C" void LLVMInitializePIC16TargetInfo() { 
  TargetRegistry::RegisterTarget(ThePIC16Target, "pic16",
                                  "PIC16 14-bit [experimental]",
                                  &PIC16_TripleMatchQuality,
                                  &PIC16_ModuleMatchQuality);

  TargetRegistry::RegisterTarget(TheCooperTarget, "cooper",    
                                  "PIC16 Cooper [experimental]",
                                  &Cooper_TripleMatchQuality,
                                  &Cooper_ModuleMatchQuality);
}