OSDN Git Service

Fix some MCTargetOptions Doxygen comments (NFC)
authorScott Linder <scott@scottlinder.com>
Thu, 4 Apr 2019 20:35:57 +0000 (20:35 +0000)
committerScott Linder <scott@scottlinder.com>
Thu, 4 Apr 2019 20:35:57 +0000 (20:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@357723 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCTargetOptions.h

index 1098a1a..f184620 100644 (file)
 namespace llvm {
 
 enum class ExceptionHandling {
-  None,     /// No exception support
-  DwarfCFI, /// DWARF-like instruction based exceptions
-  SjLj,     /// setjmp/longjmp based exceptions
-  ARM,      /// ARM EHABI
-  WinEH,    /// Windows Exception Handling
-  Wasm,     /// WebAssembly Exception Handling
+  None,     ///< No exception support
+  DwarfCFI, ///< DWARF-like instruction based exceptions
+  SjLj,     ///< setjmp/longjmp based exceptions
+  ARM,      ///< ARM EHABI
+  WinEH,    ///< Windows Exception Handling
+  Wasm,     ///< WebAssembly Exception Handling
 };
 
 enum class DebugCompressionType {
-  None, /// No compression
-  GNU,  /// zlib-gnu style compression
-  Z,    /// zlib style complession
+  None, ///< No compression
+  GNU,  ///< zlib-gnu style compression
+  Z,    ///< zlib style complession
 };
 
 class StringRef;