summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-10-30 00:49:39 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-10-30 00:49:39 +0000
commit9794186889189efaee69a127123fffd26c834fa4 (patch)
tree46b60c0f9059cb9a7224a444ae57cf6e67add593 /include
parentec4b5398c93a855da292589242d7369adc0a54a4 (diff)
downloadllvm-9794186889189efaee69a127123fffd26c834fa4.tar.gz
llvm-9794186889189efaee69a127123fffd26c834fa4.tar.bz2
llvm-9794186889189efaee69a127123fffd26c834fa4.tar.xz
StackProtector.h: Fix trailing comments for doxygen. [-Wdocumentation]
s!//<!///<! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193669 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/StackProtector.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/llvm/CodeGen/StackProtector.h b/include/llvm/CodeGen/StackProtector.h
index 5d0d6b978a..12d7c75426 100644
--- a/include/llvm/CodeGen/StackProtector.h
+++ b/include/llvm/CodeGen/StackProtector.h
@@ -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.