[compiler-rt] r217407 - Remove extra semicolon [-Wpedantic]

Alexey Samsonov vonosmas at gmail.com
Mon Sep 8 16:37:10 PDT 2014


Author: samsonov
Date: Mon Sep  8 18:37:09 2014
New Revision: 217407

URL: http://llvm.org/viewvc/llvm-project?rev=217407&view=rev
Log:
Remove extra semicolon [-Wpedantic]

Modified:
    compiler-rt/trunk/lib/ubsan/ubsan_handlers.h

Modified: compiler-rt/trunk/lib/ubsan/ubsan_handlers.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/ubsan/ubsan_handlers.h?rev=217407&r1=217406&r2=217407&view=diff
==============================================================================
--- compiler-rt/trunk/lib/ubsan/ubsan_handlers.h (original)
+++ compiler-rt/trunk/lib/ubsan/ubsan_handlers.h Mon Sep  8 18:37:09 2014
@@ -138,7 +138,7 @@ struct NonNullArgData {
 };
 
 /// \brief Handle passing null pointer to function with nonnull attribute.
-RECOVERABLE(nonnull_arg, NonNullArgData *Data);
+RECOVERABLE(nonnull_arg, NonNullArgData *Data)
 
 }
 





More information about the llvm-commits mailing list