forked from OSchip/llvm-project
TargetParser: Fix comments in enum(s) introduced in r239150. [-Wdocumentation]
llvm-svn: 239211
This commit is contained in:
parent
f4b449cec2
commit
1781a687e7
|
@ -53,16 +53,16 @@ namespace ARM {
|
||||||
|
|
||||||
// An FPU name implies one of three levels of Neon support:
|
// An FPU name implies one of three levels of Neon support:
|
||||||
enum NeonSupportLevel {
|
enum NeonSupportLevel {
|
||||||
NS_None = 0, //< No Neon
|
NS_None = 0, ///< No Neon
|
||||||
NS_Neon, //< Neon
|
NS_Neon, ///< Neon
|
||||||
NS_Crypto //< Neon with Crypto
|
NS_Crypto ///< Neon with Crypto
|
||||||
};
|
};
|
||||||
|
|
||||||
// An FPU name restricts the FPU in one of three ways:
|
// An FPU name restricts the FPU in one of three ways:
|
||||||
enum FPURestriction {
|
enum FPURestriction {
|
||||||
FR_None = 0, //< No restriction
|
FR_None = 0, ///< No restriction
|
||||||
FR_D16, //< Only 16 D registers
|
FR_D16, ///< Only 16 D registers
|
||||||
FR_SP_D16 //< Only single-precision instructions, with 16 D registers
|
FR_SP_D16 ///< Only single-precision instructions, with 16 D registers
|
||||||
};
|
};
|
||||||
|
|
||||||
// Arch names.
|
// Arch names.
|
||||||
|
|
|
@ -28,7 +28,7 @@ namespace {
|
||||||
struct {
|
struct {
|
||||||
const char * Name;
|
const char * Name;
|
||||||
ARM::FPUKind ID;
|
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::NeonSupportLevel NeonSupport;
|
||||||
ARM::FPURestriction Restriction;
|
ARM::FPURestriction Restriction;
|
||||||
} FPUNames[] = {
|
} FPUNames[] = {
|
||||||
|
|
Loading…
Reference in New Issue