[TableGen] Take a parameter by reference instead of pointer so we don't have to add & on both callers. NFC

llvm-svn: 305807
This commit is contained in:
Craig Topper 2017-06-20 16:34:37 +00:00
parent e8a8e6a6b1
commit 2a053a9f9d
1 changed files with 4 additions and 4 deletions

View File

@ -2762,8 +2762,8 @@ public:
AnalyzeNode(Pat->getTree(0));
}
void Analyze(const PatternToMatch *Pat) {
AnalyzeNode(Pat->getSrcPattern());
void Analyze(const PatternToMatch &Pat) {
AnalyzeNode(Pat.getSrcPattern());
}
private:
@ -3305,7 +3305,7 @@ void CodeGenDAGPatterns::InferInstructionFlags() {
continue;
InstAnalyzer PatInfo(*this);
PatInfo.Analyze(&PTM);
PatInfo.Analyze(PTM);
Errors += InferFromPattern(InstInfo, PatInfo, PTM.getSrcRecord());
}
@ -3365,7 +3365,7 @@ void CodeGenDAGPatterns::VerifyInstructionFlags() {
// Analyze the source pattern.
InstAnalyzer PatInfo(*this);
PatInfo.Analyze(&PTM);
PatInfo.Analyze(PTM);
// Collect error messages.
SmallVector<std::string, 4> Msgs;