diff options
Diffstat (limited to 'compiler-rt/lib')
| -rw-r--r-- | compiler-rt/lib/interception/interception_linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/interception/interception_linux.h b/compiler-rt/lib/interception/interception_linux.h index 4c6f97a9d96..5e0ec2acbb0 100644 --- a/compiler-rt/lib/interception/interception_linux.h +++ b/compiler-rt/lib/interception/interception_linux.h @@ -36,7 +36,7 @@ void *GetFuncAddrVer(const char *func_name, const char *ver); #if !defined(__ANDROID__) // android does not have dlvsym #define INTERCEPT_FUNCTION_VER(func, funcver, symver) \ - __asm__(".symver "#funcver","#func"@"#symver); \ + __asm__(".symver "#funcver","#func"@@"#symver); \ ::__interception::real_##funcver = (funcver##_f)(unsigned long) \ ::__interception::GetFuncAddrVer(#func, #symver) #endif // !defined(__ANDROID__) |

