blob: e5b2a1ed33083da36f6c6a5286ff35070253990a [file] [log] [blame]
Anton Korobeynikov4403b932009-07-16 13:27:25 +00001//===- SystemZSubtarget.cpp - SystemZ Subtarget Information -------*- C++ -*-=//
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 SystemZ specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#include "SystemZSubtarget.h"
15#include "SystemZ.h"
16#include "SystemZGenSubtarget.inc"
17#include "llvm/Target/TargetMachine.h"
18
19using namespace llvm;
20
21SystemZSubtarget::SystemZSubtarget(const TargetMachine &TM, const Module &M,
22 const std::string &FS) {
23 std::string CPU = "generic";
24
25 // Parse features string.
26 ParseSubtargetFeatures(FS, CPU);
27}