aboutsummaryrefslogtreecommitdiff
path: root/system_wrappers
diff options
context:
space:
mode:
authorMirko Bonadei <mbonadei@webrtc.org>2021-10-30 17:56:24 +0200
committerWebRTC LUCI CQ <webrtc-scoped@luci-project-accounts.iam.gserviceaccount.com>2021-10-31 12:40:38 +0000
commit329137590ed5b8a412abda031bdd4c38ab85ac12 (patch)
treeaa45121774b1250ee63a3fa33a29502fe5007944 /system_wrappers
parent2b10c479cef4d2390251343be1c9d8a4a270634f (diff)
downloadwebrtc-329137590ed5b8a412abda031bdd4c38ab85ac12.tar.gz
Fix -Wunused-but-set-variable.
This is part of a set of CLs to fix the Chromium roll. Bug: None Change-Id: I7cc1e5b84a2443f311fb4e047954d7d4d9c41189 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/236761 Commit-Queue: Tommi <tommi@webrtc.org> Reviewed-by: Tommi <tommi@webrtc.org> Cr-Commit-Position: refs/heads/main@{#35284}
Diffstat (limited to 'system_wrappers')
-rw-r--r--system_wrappers/source/cpu_features_linux.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/system_wrappers/source/cpu_features_linux.cc b/system_wrappers/source/cpu_features_linux.cc
index 335bed4da3..2d79dde111 100644
--- a/system_wrappers/source/cpu_features_linux.cc
+++ b/system_wrappers/source/cpu_features_linux.cc
@@ -66,6 +66,7 @@ uint64_t GetCPUFeaturesARM(void) {
}
#endif // WEBRTC_GLIBC_PREREQ(2, 16)
#if defined(__aarch64__)
+ (void)platform;
architecture = 8;
if ((hwcap & HWCAP_FP) != 0)
result |= kCPUFeatureVFPv3;