summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/arm64
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-07-28 02:26:16 +0300
committerWill Deacon <will@kernel.org>2023-08-04 19:36:52 +0300
commitdb7a89f706d6080121b61099b1d69a752ce0c61e (patch)
tree63c9372a142f45456b0e5a30ebf8714f6c292486 /tools/testing/selftests/arm64
parent35d7bc983a74db7067d874be2708a7d3bc269f13 (diff)
downloadlinux-db7a89f706d6080121b61099b1d69a752ce0c61e.tar.xz
kselftest/arm64: Use shared OPTIMZER_HIDE_VAR() definiton
We had open coded the definition of OPTIMIZER_HIDE_VAR() as a fix but now that we have the generic tools/include available and that has had a definition of OPTIMIZER_HIDE_VAR() we can switch to the define. Signed-off-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20230728-arm64-signal-memcpy-fix-v4-5-0c1290db5d46@kernel.org Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'tools/testing/selftests/arm64')
-rw-r--r--tools/testing/selftests/arm64/signal/test_signals_utils.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/testing/selftests/arm64/signal/test_signals_utils.h b/tools/testing/selftests/arm64/signal/test_signals_utils.h
index c7f5627171dd..762c8fe9c54a 100644
--- a/tools/testing/selftests/arm64/signal/test_signals_utils.h
+++ b/tools/testing/selftests/arm64/signal/test_signals_utils.h
@@ -8,6 +8,8 @@
#include <stdio.h>
#include <string.h>
+#include <linux/compiler.h>
+
#include "test_signals.h"
int test_init(struct tdescr *td);
@@ -76,7 +78,7 @@ static __always_inline bool get_current_context(struct tdescr *td,
*/
for (i = 0; i < td->live_sz; i++) {
uc[i] = 0;
- __asm__ ("" : "=r" (uc[i]) : "0" (uc[i]));
+ OPTIMIZER_HIDE_VAR(uc[0]);
}
td->live_uc = dest_uc;