[llvm] r357723 - Fix some MCTargetOptions Doxygen comments (NFC)

Scott Linder via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 4 13:35:57 PDT 2019


Author: scott.linder
Date: Thu Apr  4 13:35:57 2019
New Revision: 357723

URL: http://llvm.org/viewvc/llvm-project?rev=357723&view=rev
Log:
Fix some MCTargetOptions Doxygen comments (NFC)

Modified:
    llvm/trunk/include/llvm/MC/MCTargetOptions.h

Modified: llvm/trunk/include/llvm/MC/MCTargetOptions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCTargetOptions.h?rev=357723&r1=357722&r2=357723&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCTargetOptions.h (original)
+++ llvm/trunk/include/llvm/MC/MCTargetOptions.h Thu Apr  4 13:35:57 2019
@@ -15,18 +15,18 @@
 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;




More information about the llvm-commits mailing list