mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
R600: Trivial subtarget feature cleanups.
Remove an unused AMDIL leftover, correct extra periods appearing in the help menu. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211341 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -32,30 +32,25 @@ def FeatureIfCvt : SubtargetFeature <"disable-ifcvt",
|
||||
"false",
|
||||
"Disable the if conversion pass">;
|
||||
|
||||
def FeatureFP64 : SubtargetFeature<"fp64",
|
||||
def FeatureFP64 : SubtargetFeature<"fp64",
|
||||
"FP64",
|
||||
"true",
|
||||
"Enable 64bit double precision operations">;
|
||||
"Enable double precision operations">;
|
||||
|
||||
def Feature64BitPtr : SubtargetFeature<"64BitPtr",
|
||||
"Is64bit",
|
||||
"true",
|
||||
"Specify if 64bit addressing should be used.">;
|
||||
|
||||
def Feature32on64BitPtr : SubtargetFeature<"64on32BitPtr",
|
||||
"Is32on64bit",
|
||||
"false",
|
||||
"Specify if 64bit sized pointers with 32bit addressing should be used.">;
|
||||
"Specify if 64-bit addressing should be used">;
|
||||
|
||||
def FeatureR600ALUInst : SubtargetFeature<"R600ALUInst",
|
||||
"R600ALUInst",
|
||||
"false",
|
||||
"Older version of ALU instructions encoding.">;
|
||||
"Older version of ALU instructions encoding">;
|
||||
|
||||
def FeatureVertexCache : SubtargetFeature<"HasVertexCache",
|
||||
"HasVertexCache",
|
||||
"true",
|
||||
"Specify use of dedicated vertex cache.">;
|
||||
"Specify use of dedicated vertex cache">;
|
||||
|
||||
def FeatureCaymanISA : SubtargetFeature<"caymanISA",
|
||||
"CaymanISA",
|
||||
|
@@ -44,7 +44,6 @@ public:
|
||||
private:
|
||||
std::string DevName;
|
||||
bool Is64bit;
|
||||
bool Is32on64bit;
|
||||
bool DumpCode;
|
||||
bool R600ALUInst;
|
||||
bool HasVertexCache;
|
||||
|
Reference in New Issue
Block a user