aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
blob: c0e0d20029c281a44b5c082ea9fcd9ae42a321b3 (plain) (blame)
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
//===-- AVRTargetInfo.cpp - AVR Target Implementation ---------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "llvm/IR/Module.h"
#include "llvm/Support/TargetRegistry.h"

namespace llvm {
Target TheAVRTarget;
}

extern "C" void LLVMInitializeAVRTargetInfo() {
  llvm::RegisterTarget<llvm::Triple::avr> X(
      llvm::TheAVRTarget, "avr", "Atmel AVR Microcontroller");
}

// FIXME: Temporary stub - this function must be defined for linking
// to succeed. Remove once this function is properly implemented.
extern "C" void LLVMInitializeAVRTargetMC() {
}