Nikolai Bozhenov | 82f0801 | 2017-05-29 09:48:30 +0000 | [diff] [blame] | 1 | //===-- Nios2TargetInfo.cpp - Nios2 Target Implementation -----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "Nios2.h" |
| 11 | #include "llvm/Support/TargetRegistry.h" |
| 12 | |
| 13 | using namespace llvm; |
| 14 | |
| 15 | Target &llvm::getTheNios2Target() { |
| 16 | static Target TheNios2Target; |
| 17 | return TheNios2Target; |
| 18 | } |
| 19 | |
| 20 | extern "C" void LLVMInitializeNios2TargetInfo() { |
| 21 | RegisterTarget<Triple::nios2, |
| 22 | /*HasJIT=*/true> |
Nikolai Bozhenov | 1cf9c54 | 2017-12-07 12:35:02 +0000 | [diff] [blame] | 23 | X(getTheNios2Target(), "nios2", "Nios2", "Nios2"); |
Nikolai Bozhenov | 82f0801 | 2017-05-29 09:48:30 +0000 | [diff] [blame] | 24 | } |