[compiler-rt] 56513e3 - [sanitizers] remove extra comma for sha2 interceptors

David Carlier via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 2 03:35:52 PDT 2021


Author: David Carlier
Date: 2021-11-02T10:35:44Z
New Revision: 56513e3e429d2413c314f473df6a81869af0c04e

URL: https://github.com/llvm/llvm-project/commit/56513e3e429d2413c314f473df6a81869af0c04e
DIFF: https://github.com/llvm/llvm-project/commit/56513e3e429d2413c314f473df6a81869af0c04e.diff

LOG: [sanitizers] remove extra comma for sha2 interceptors

Added: 
    

Modified: 
    compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc b/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
index d0cb1b4a1dc5..3ff1e7b94ead 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
@@ -9081,10 +9081,10 @@ INTERCEPTOR(char *, MD2Data, const unsigned char *data, unsigned int len,
     return ret; \
   }
 
-SHA2_INTERCEPTORS(224, u32);
-SHA2_INTERCEPTORS(256, u32);
-SHA2_INTERCEPTORS(384, u64);
-SHA2_INTERCEPTORS(512, u64);
+SHA2_INTERCEPTORS(224, u32)
+SHA2_INTERCEPTORS(256, u32)
+SHA2_INTERCEPTORS(384, u64)
+SHA2_INTERCEPTORS(512, u64)
 
 #define INIT_SHA2_INTECEPTORS(LEN) \
   COMMON_INTERCEPT_FUNCTION(SHA##LEN##_Init); \


        


More information about the llvm-commits mailing list