Remove unused member & unnecessary semicolon.

llvm-svn: 166694
This commit is contained in:
David Blaikie 2012-10-25 17:04:55 +00:00
parent 89870cebcb
commit dcbd160804
1 changed files with 2 additions and 3 deletions

View File

@ -183,7 +183,6 @@ class MapTableEmitter {
private:
// std::string TargetName;
const CodeGenTarget &Target;
RecordKeeper &Records;
// InstrMapDesc - InstrMapping record to be processed.
InstrMap InstrMapDesc;
@ -201,10 +200,10 @@ private:
public:
MapTableEmitter(CodeGenTarget &Target, RecordKeeper &Records, Record *IMRec):
Target(Target), Records(Records), InstrMapDesc(IMRec) {
Target(Target), InstrMapDesc(IMRec) {
const std::string FilterClass = InstrMapDesc.getFilterClass();
InstrDefs = Records.getAllDerivedDefinitions(FilterClass);
};
}
void buildRowInstrMap();