]> granicus.if.org Git - llvm/commitdiff
StackProtector.h: Fix trailing comments for doxygen. [-Wdocumentation]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 30 Oct 2013 00:49:39 +0000 (00:49 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 30 Oct 2013 00:49:39 +0000 (00:49 +0000)
  s!//<!///<!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193669 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/StackProtector.h

index 5d0d6b978aa5d8cfe96e3af5d432a7f35b4a3a68..12d7c75426a849d073417586c635047d45f08664 100644 (file)
@@ -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.