blob: a394f774ab8ee76718ed67e1a4e9ce058bbad2c4 [file] [log] [blame]
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001//===- MipsSubtarget.cpp - Mips Subtarget Information -----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Bruno Cardoso Lopes and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Mips specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#include "MipsSubtarget.h"
15#include "Mips.h"
16#include "MipsGenSubtarget.inc"
17using namespace llvm;
18
19MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M,
20 const std::string &FS) : isR3000(false)
21{
22 std::string CPU = "generic";
23
24 // Parse features string.
25 ParseSubtargetFeatures(FS, CPU);
26}