Fix some MCTargetOptions Doxygen comments (NFC)

llvm-svn: 357723
This commit is contained in:
Scott Linder 2019-04-04 20:35:57 +00:00
parent 6e1bda9f15
commit c534358a90

View File

@ -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;