From ae33daa8d75723c1714c12497a042fdb40d3ef02 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Tue, 2 Feb 2021 11:51:41 -0800 Subject: [PATCH] gpu-compute,misc: Fix Clang missing override errors Clang fails to compile GCN3 due to missing overrides in `src/gpu-compute/gpu_command_processor.hh`. This commit fixes this errror. Change-Id: I6da9fce7c3eb86a5418a931ee4f225cceda488a5 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/40396 Reviewed-by: Jason Lowe-Power Reviewed-by: Matt Sinclair Maintainer: Jason Lowe-Power Maintainer: Matt Sinclair Tested-by: kokoro --- src/gpu-compute/gpu_command_processor.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpu-compute/gpu_command_processor.hh b/src/gpu-compute/gpu_command_processor.hh index 8f6bfe279..ebdf9ae7a 100644 --- a/src/gpu-compute/gpu_command_processor.hh +++ b/src/gpu-compute/gpu_command_processor.hh @@ -87,7 +87,7 @@ class GPUCommandProcessor : public HSADevice void updateHsaSignal(Addr signal_handle, uint64_t signal_value) override; - uint64_t functionalReadHsaSignal(Addr signal_handle); + uint64_t functionalReadHsaSignal(Addr signal_handle) override; Addr getHsaSignalValueAddr(Addr signal_handle) { -- 2.30.2