remove a helper method with only one call site.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59495 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-11-18 05:05:28 +00:00
Родитель 2383b7f6ae
Коммит 5917fe1189
2 изменённых файлов: 1 добавлений и 9 удалений

Просмотреть файл

@ -1464,7 +1464,7 @@ int main(int argc, char **argv) {
// -I- is a deprecated GCC feature, scan for it and reject it. // -I- is a deprecated GCC feature, scan for it and reject it.
for (unsigned i = 0, e = I_dirs.size(); i != e; ++i) { for (unsigned i = 0, e = I_dirs.size(); i != e; ++i) {
if (I_dirs[i] == "-") { if (I_dirs[i] == "-") {
Diags.Report(diag::err_pp_I_dash_not_supported); Diags.Report(FullSourceLoc(), diag::err_pp_I_dash_not_supported);
I_dirs.erase(I_dirs.begin()+i); I_dirs.erase(I_dirs.begin()+i);
--i; --i;
} }

Просмотреть файл

@ -170,14 +170,6 @@ public:
Report(NULL, Pos, DiagID, Strs, NumStrs, Ranges, NumRanges); Report(NULL, Pos, DiagID, Strs, NumStrs, Ranges, NumRanges);
} }
/// Report - Issue the message to the client. DiagID is a member of the
/// diag::kind enum.
void Report(unsigned DiagID,
const std::string **Strs = 0, unsigned NumStrs = 0,
const SourceRange *Ranges = 0, unsigned NumRanges = 0) {
Report(FullSourceLoc(), DiagID, Strs, NumStrs, Ranges, NumRanges);
}
/// Report - Issue the message to the specified client. /// Report - Issue the message to the specified client.
/// DiagID is a member of the diag::kind enum. /// DiagID is a member of the diag::kind enum.
void Report(DiagnosticClient* C, FullSourceLoc Pos, unsigned DiagID, void Report(DiagnosticClient* C, FullSourceLoc Pos, unsigned DiagID,