aboutsummaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-10-26 19:05:32 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2018-11-08 12:00:31 +0000
commit421405b6a21b124288a750e2da26dc01eb7391cb (patch)
tree35f5655ce9d8b5921cb03630534f532e4eb47bf5 /support
parentf1adf11c776aebaa8da1b8644a4ba2453afd2b81 (diff)
downloadComputeLibrary-421405b6a21b124288a750e2da26dc01eb7391cb.tar.gz
COMPMID-1675: Add SVE support
Change-Id: I86679adff556b6ffc9929b35cbf1b59b3958bdb1
Diffstat (limited to 'support')
-rw-r--r--support/Semaphore.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/support/Semaphore.h b/support/Semaphore.h
index 6cdf196dee..636d5caf79 100644
--- a/support/Semaphore.h
+++ b/support/Semaphore.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -74,14 +74,17 @@ public:
Semaphore(int value = 0)
: _value(value)
{
+ (void)_value;
}
/** Signals a semaphore */
inline void signal()
{
+ (void)_value;
}
/** Waits on a semaphore */
inline void wait()
{
+ (void)_value;
}
private: