-
Notifications
You must be signed in to change notification settings - Fork 1
/
M6809Subtarget.h
33 lines (26 loc) · 904 Bytes
/
M6809Subtarget.h
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
29
30
31
32
33
//=====-- M6809Subtarget.h - Define Subtarget for the M6809 ----*- C++ -*-====//
//
// The LLVM Compiler Infrastructure
//
// This file was developed by Tim Lindner and Boisy Pitre and is distributed under the
// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file declares the M6809 specific subclass of TargetSubtarget.
//
//===----------------------------------------------------------------------===//
#ifndef M6809_SUBTARGET_H
#define M6809_SUBTARGET_H
#include "llvm/Target/TargetSubtarget.h"
#include <string>
namespace llvm {
class Module;
class M6809Subtarget : public TargetSubtarget {
bool Is6309;
public:
M6809Subtarget(const Module &M, const std::string &FS);
bool is6309() const { return Is6309; }
};
} // end namespace llvm
#endif