mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Rest of subtarget support, remove references to ppc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25642 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -21,11 +21,15 @@ namespace llvm {
|
||||
class Module;
|
||||
|
||||
class SparcV8Subtarget : public TargetSubtarget {
|
||||
bool Is64Bit;
|
||||
bool IsV9;
|
||||
bool V8DeprecatedInsts;
|
||||
bool IsVIS;
|
||||
public:
|
||||
SparcV8Subtarget(const Module &M, const std::string &FS);
|
||||
|
||||
bool is64Bit() const { return Is64Bit; }
|
||||
bool isV9() const { return IsV9; }
|
||||
bool isVIS() const { return IsVIS; }
|
||||
bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; }
|
||||
|
||||
/// ParseSubtargetFeatures - Parses features string setting specified
|
||||
/// subtarget options. Definition of function is auto generated by tblgen.
|
||||
|
Reference in New Issue
Block a user