[llvm] r239211 - TargetParser: Fix comments in enum(s) introduced in r239150. [-Wdocumentation]
NAKAMURA Takumi
geek4civic at gmail.com
Fri Jun 5 18:41:35 PDT 2015
Author: chapuni
Date: Fri Jun 5 20:41:35 2015
New Revision: 239211
URL: http://llvm.org/viewvc/llvm-project?rev=239211&view=rev
Log:
TargetParser: Fix comments in enum(s) introduced in r239150. [-Wdocumentation]
Modified:
llvm/trunk/include/llvm/Support/TargetParser.h
llvm/trunk/lib/Support/TargetParser.cpp
Modified: llvm/trunk/include/llvm/Support/TargetParser.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/TargetParser.h?rev=239211&r1=239210&r2=239211&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/TargetParser.h (original)
+++ llvm/trunk/include/llvm/Support/TargetParser.h Fri Jun 5 20:41:35 2015
@@ -53,16 +53,16 @@ namespace ARM {
// 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 {
- 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.
Modified: llvm/trunk/lib/Support/TargetParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/TargetParser.cpp?rev=239211&r1=239210&r2=239211&view=diff
==============================================================================
--- llvm/trunk/lib/Support/TargetParser.cpp (original)
+++ llvm/trunk/lib/Support/TargetParser.cpp Fri Jun 5 20:41:35 2015
@@ -28,7 +28,7 @@ namespace {
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[] = {
More information about the llvm-commits
mailing list