TargetParser: Fix comments in enum(s) introduced in r239150. [-Wdocumentation]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sat, 6 Jun 2015 01:41:35 +0000 (01:41 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sat, 6 Jun 2015 01:41:35 +0000 (01:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239211 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/TargetParser.h
lib/Support/TargetParser.cpp

index f59d5e823b6f53d23ce8611286abc991be312e10..777ee2075d61296f6ad5a381167687a4aa51e20e 100644 (file)
@@ -53,16 +53,16 @@ namespace ARM {
 
   // An FPU name implies one of three levels of Neon support:
   enum NeonSupportLevel {
 
   // An FPU name implies one of three levels of Neon support:
   enum NeonSupportLevel {
-    NS_None = 0, //< No Neon
-    NS_Neon,     //< Neon
-    NS_Crypto    //< Neon with Crypto
+    NS_None = 0, ///< No Neon
+    NS_Neon,     ///< Neon
+    NS_Crypto    ///< Neon with Crypto
   };
 
   // An FPU name restricts the FPU in one of three ways:
   enum FPURestriction {
   };
 
   // An FPU name restricts the FPU in one of three ways:
   enum FPURestriction {
-    FR_None = 0, //< No restriction
-    FR_D16,      //< Only 16 D registers
-    FR_SP_D16    //< Only single-precision instructions, with 16 D registers
+    FR_None = 0, ///< No restriction
+    FR_D16,      ///< Only 16 D registers
+    FR_SP_D16    ///< Only single-precision instructions, with 16 D registers
   };
 
   // Arch names.
   };
 
   // Arch names.
index bd83c9c71fdaab30c223518a2c84afaac6ded2ab..757483b9586452b0fabe6d76c31910ba2a4271c2 100644 (file)
@@ -28,7 +28,7 @@ namespace {
 struct {
   const char * Name;
   ARM::FPUKind ID;
 struct {
   const char * Name;
   ARM::FPUKind ID;
-  unsigned FPUVersion; //< Corresponds directly to the FP arch version number.
+  unsigned FPUVersion; ///< Corresponds directly to the FP arch version number.
   ARM::NeonSupportLevel NeonSupport;
   ARM::FPURestriction Restriction;
 } FPUNames[] = {
   ARM::NeonSupportLevel NeonSupport;
   ARM::FPURestriction Restriction;
 } FPUNames[] = {