summaryrefslogtreecommitdiff
path: root/lib/Target/XCore/XCoreSubtarget.cpp
blob: d6e2e8ab2af0e9ca1658ebe7d55e168795a88322 (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
//===- XCoreSubtarget.cpp - XCore Subtarget Information -----------*- C++ -*-=//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the XCore specific subclass of TargetSubtargetInfo.
//
//===----------------------------------------------------------------------===//

#include "XCoreSubtarget.h"
#include "XCore.h"

#define GET_SUBTARGETINFO_CTOR
#define GET_SUBTARGETINFO_MC_DESC
#define GET_SUBTARGETINFO_TARGET_DESC
#include "XCoreGenSubtarget.inc"

using namespace llvm;

XCoreSubtarget::XCoreSubtarget(const std::string &TT,
                               const std::string &CPU, const std::string &FS)
  : XCoreGenSubtargetInfo()
{
}