[llvm] r193669 - StackProtector.h: Fix trailing comments for doxygen. [-Wdocumentation]

NAKAMURA Takumi geek4civic at gmail.com
Tue Oct 29 17:49:40 PDT 2013


Author: chapuni
Date: Tue Oct 29 19:49:39 2013
New Revision: 193669

URL: http://llvm.org/viewvc/llvm-project?rev=193669&view=rev
Log:
StackProtector.h: Fix trailing comments for doxygen. [-Wdocumentation]

  s!//<!///<!

Modified:
    llvm/trunk/include/llvm/CodeGen/StackProtector.h

Modified: llvm/trunk/include/llvm/CodeGen/StackProtector.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/StackProtector.h?rev=193669&r1=193668&r2=193669&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/StackProtector.h (original)
+++ llvm/trunk/include/llvm/CodeGen/StackProtector.h Tue Oct 29 19:49:39 2013
@@ -34,14 +34,14 @@ public:
   /// SSPLayoutKind.  Stack Smashing Protection (SSP) rules require that
   /// vulnerable stack allocations are located close the stack protector.
   enum SSPLayoutKind {
-    SSPLK_None,       //< Did not trigger a stack protector.  No effect on data
-                      //< layout.
-    SSPLK_LargeArray, //< Array or nested array >= SSP-buffer-size.  Closest
-                      //< to the stack protector.
-    SSPLK_SmallArray, //< Array or nested array < SSP-buffer-size. 2nd closest
-                      //< to the stack protector.
-    SSPLK_AddrOf      //< The address of this allocation is exposed and
-                      //< triggered protection.  3rd closest to the protector.
+    SSPLK_None,       ///< Did not trigger a stack protector.  No effect on data
+                      ///< layout.
+    SSPLK_LargeArray, ///< Array or nested array >= SSP-buffer-size.  Closest
+                      ///< to the stack protector.
+    SSPLK_SmallArray, ///< Array or nested array < SSP-buffer-size. 2nd closest
+                      ///< to the stack protector.
+    SSPLK_AddrOf      ///< The address of this allocation is exposed and
+                      ///< triggered protection.  3rd closest to the protector.
   };
 
   /// A mapping of AllocaInsts to their required SSP layout.





More information about the llvm-commits mailing list