diff options
Diffstat (limited to 'llvm/utils/TableGen/CodeGenSchedule.h')
-rw-r--r-- | llvm/utils/TableGen/CodeGenSchedule.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/utils/TableGen/CodeGenSchedule.h b/llvm/utils/TableGen/CodeGenSchedule.h index 755ffd25b0c..7a236ad0dd8 100644 --- a/llvm/utils/TableGen/CodeGenSchedule.h +++ b/llvm/utils/TableGen/CodeGenSchedule.h @@ -189,10 +189,6 @@ struct CodeGenProcModel { // This list is empty if no ItinRW refers to this Processor. RecVec ItinRWDefs; - // List of unsupported feature. - // This list is empty if the Processor has no UnsupportedFeatures. - RecVec UnsupportedFeaturesDefs; - // All read/write resources associated with this processor. RecVec WriteResDefs; RecVec ReadAdvanceDefs; @@ -215,8 +211,6 @@ struct CodeGenProcModel { unsigned getProcResourceIdx(Record *PRDef) const; - bool isUnsupported(const CodeGenInstruction &Inst) const; - #ifndef NDEBUG void dump() const; #endif @@ -408,8 +402,6 @@ private: void collectProcItinRW(); - void collectProcUnsupportedFeatures(); - void inferSchedClasses(); void checkCompleteness(); |