-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
Hello,
the latest visual studio 2022 got the following error:
Severity Code Description Project File Line Suppression State
Error no matching function for call to 'atomic_store_explicit' TinyDBR E:\TinyDBR-master\TinyDBR\tinydbr.cpp 229
template <typename T>
void TinyDBR::CommitValueAtomicT(ModuleInfo* module, size_t start_offset)
{
static_assert(std::is_integral_v<T> && sizeof(T) <= sizeof(uint64_t));
T value = *reinterpret_cast<T*>(module->instrumented_code_local + start_offset);
_Atomic(T)* ptr = reinterpret_cast<_Atomic(T)*>(module->instrumented_code_remote + start_offset);
if ((uintptr_t)ptr % sizeof(T) != 0)
{
FATAL("pointer not aligned.");
}
atomic_store_explicit(ptr, value, std::memory_order_relaxed);
}
atomic_store_explicit(ptr, value, std::memory_order_relaxed); Clang Diagnostic Error: no matching function for call to atomic_store_explicit
Severity Code Description Project File Line Suppression State
Error (active) E0059 function call is not allowed in a constant expression ShellcodeSample C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\x64\lib\clang\15.0.1\include\xmmintrin.h 3014
/* Ugly hack for backwards-compatibility (compatible with gcc) */
#if defined(__SSE2__) && !__building_module(_Builtin_intrinsics)
#include <emmintrin.h>
#endif
UnlimitedChild
Metadata
Metadata
Assignees
Labels
No labels