From: Bobby R. Bruce Date: Tue, 2 Feb 2021 19:51:41 +0000 (-0800) Subject: gpu-compute,misc: Fix Clang missing override errors X-Git-Tag: develop-gem5-snapshot~154 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ae33daa8d75723c1714c12497a042fdb40d3ef02;p=gem5.git 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 --- 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) {