diff options
Diffstat (limited to 'llvm/tools/llvm-mca/ResourcePressureView.cpp')
-rw-r--r-- | llvm/tools/llvm-mca/ResourcePressureView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-mca/ResourcePressureView.cpp b/llvm/tools/llvm-mca/ResourcePressureView.cpp index 37bb059c907..fe9d5b7fabc 100644 --- a/llvm/tools/llvm-mca/ResourcePressureView.cpp +++ b/llvm/tools/llvm-mca/ResourcePressureView.cpp @@ -40,7 +40,7 @@ void ResourcePressureView::initialize() { std::fill(ResourceUsage.begin(), ResourceUsage.end(), 0.0); } -void ResourcePressureView::onInstructionEvent(const HWInstructionEvent &Event) { +void ResourcePressureView::onEvent(const HWInstructionEvent &Event) { // We're only interested in Issue events. if (Event.Type != HWInstructionEvent::Issued) return; |