From d5e1255ca7a60ccb2f06045e8348d379b0dc13f1 Mon Sep 17 00:00:00 2001 From: Keno Fischer Date: Sun, 13 Mar 2016 18:56:21 -0400 Subject: [PATCH] Don't pass REALNAME to `.end` Putting the procedure there is an MSVC-ism, where it is optional. GCC silently ignores and Clang errors, so it is best to remove this. --- common_x86_64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common_x86_64.h b/common_x86_64.h index da9afc0e4..11937b415 100644 --- a/common_x86_64.h +++ b/common_x86_64.h @@ -396,7 +396,7 @@ REALNAME: #define PROFCODE -#define EPILOGUE .end REALNAME +#define EPILOGUE .end #endif #if defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS_NETBSD) || defined(__ELF__) || defined(C_PGI)