mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
[ORE] Remove old "diagnostic hotness" spelling
Summary: Depends on https://reviews.llvm.org/D34865. With the Clang uses of the old spelling having been removed in https://reviews.llvm.org/D34865, get rid of the old "diagnostic hotness" spellings in favor of the new "diagnostics hotness". Reviewers: anemet, davidxl Reviewed By: anemet Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D34866 llvm-svn: 306866
This commit is contained in:
parent
7d791c15c9
commit
138eb763dc
@ -186,15 +186,6 @@ public:
|
||||
/// setDiagnosticContext.
|
||||
void *getDiagnosticContext() const;
|
||||
|
||||
/// \brief Return if a code hotness metric should be included in optimization
|
||||
/// diagnostics. This method is deprecated; use getDiagnosticsHotnessRequested
|
||||
/// instead.
|
||||
bool getDiagnosticHotnessRequested() const;
|
||||
/// \brief Set if a code hotness metric should be included in optimization
|
||||
/// diagnostics. This method is deprecated; use setDiagnosticsHotnessRequested
|
||||
/// instead.
|
||||
void setDiagnosticHotnessRequested(bool Requested);
|
||||
|
||||
/// \brief Return if a code hotness metric should be included in optimization
|
||||
/// diagnostics.
|
||||
bool getDiagnosticsHotnessRequested() const;
|
||||
|
@ -125,13 +125,6 @@ void LLVMContext::setDiagnosticHandler(DiagnosticHandlerTy DiagnosticHandler,
|
||||
pImpl->RespectDiagnosticFilters = RespectFilters;
|
||||
}
|
||||
|
||||
void LLVMContext::setDiagnosticHotnessRequested(bool Requested) {
|
||||
pImpl->DiagnosticsHotnessRequested = Requested;
|
||||
}
|
||||
bool LLVMContext::getDiagnosticHotnessRequested() const {
|
||||
return pImpl->DiagnosticsHotnessRequested;
|
||||
}
|
||||
|
||||
void LLVMContext::setDiagnosticsHotnessRequested(bool Requested) {
|
||||
pImpl->DiagnosticsHotnessRequested = Requested;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user