mirror of
https://github.com/grumpycoders/pcsx-redux.git
synced 2025-04-02 10:41:54 -04:00
25 lines
530 B
C++
25 lines
530 B
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (c) Electronic Arts Inc. All rights reserved.
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#include <EASTL/atomic.h>
|
|
|
|
|
|
namespace eastl
|
|
{
|
|
|
|
namespace internal
|
|
{
|
|
|
|
|
|
static void EastlCompilerBarrierDataDependencyFunc(void*)
|
|
{
|
|
}
|
|
|
|
volatile CompilerBarrierDataDependencyFuncPtr gCompilerBarrierDataDependencyFunc = &EastlCompilerBarrierDataDependencyFunc;
|
|
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace eastl
|