blob: cf14b105aaf8846f010811cd105d30bc8fdc09ac [file] [log] [blame]
Jakob Stoklund Olesend9509412009-08-02 17:32:10 +00001//===- BlackfinSubtarget.cpp - BLACKFIN Subtarget Information -------------===//
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// This file implements the blackfin specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#include "BlackfinSubtarget.h"
15#include "BlackfinGenSubtarget.inc"
16
17using namespace llvm;
18
19BlackfinSubtarget::BlackfinSubtarget(const TargetMachine &TM,
20 const Module &M,
21 const std::string &FS) {
22 std::string CPU = "generic";
23
24 // Parse features string.
25 ParseSubtargetFeatures(FS, CPU);
26}