diff options
-rw-r--r-- | compiler-rt/lib/interception/interception_win.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler-rt/lib/interception/interception_win.h b/compiler-rt/lib/interception/interception_win.h index 10534c0043c..1f866a1e0e2 100644 --- a/compiler-rt/lib/interception/interception_win.h +++ b/compiler-rt/lib/interception/interception_win.h @@ -28,9 +28,7 @@ bool OverrideFunction(uptr old_func, uptr new_func, uptr *orig_old_func); } // namespace __interception #if defined(_DLL) -# define INTERCEPT_FUNCTION_WIN(func) \ - ::__interception::GetRealFunctionAddress( \ - #func, (::__interception::uptr*)&REAL(func)) +# error Not implemented yet #else # define INTERCEPT_FUNCTION_WIN(func) \ ::__interception::OverrideFunction( \ |