r356152 - Remove unused variable to silence compiler warning [NFC]
Mikael Holmen via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 14 07:20:50 PDT 2019
Author: uabelho
Date: Thu Mar 14 07:20:50 2019
New Revision: 356152
URL: http://llvm.org/viewvc/llvm-project?rev=356152&view=rev
Log:
Remove unused variable to silence compiler warning [NFC]
The only use of MI was removed in r356142.
Modified:
cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
Modified: cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp?rev=356152&r1=356151&r2=356152&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp Thu Mar 14 07:20:50 2019
@@ -892,8 +892,7 @@ static std::string getMacroNameAndPrintE
// If this token is a macro that should be expanded inside the current
// macro.
- if (const MacroInfo *MI =
- getMacroInfoForLocation(PP, SM, II, T.getLocation())) {
+ if (getMacroInfoForLocation(PP, SM, II, T.getLocation())) {
getMacroNameAndPrintExpansion(Printer, T.getLocation(), PP, Info.Args,
AlreadyProcessedTokens);
More information about the cfe-commits
mailing list