From 988b97c0686da1bad34f90e3cac151a99db8952c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Wed, 29 Apr 2020 04:00:03 +0000 Subject: [PATCH] fix userland/cpp/atomic/aarch64_add.cpp which can fail but was asserting --- userland/cpp/atomic/main.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userland/cpp/atomic/main.hpp b/userland/cpp/atomic/main.hpp index 9011bf5..04c5ace 100644 --- a/userland/cpp/atomic/main.hpp +++ b/userland/cpp/atomic/main.hpp @@ -116,7 +116,7 @@ int main(int argc, char **argv) { uint64_t expect = nthreads * niters; #if LKMC_USERLAND_ATOMIC_FAIL || \ LKMC_USERLAND_ATOMIC_X86_64_INC || \ - LKMC_USERLAND_ATOMIC_AARCH64_INC + LKMC_USERLAND_ATOMIC_AARCH64_ADD // These fail, so we just print the outcomes. std::cout << "expect " << expect << std::endl; std::cout << "global " << global << std::endl;