From 4fb638b52782de27d04f0054f67600d7d7662dc5 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 6 Jun 2015 01:41:35 +0000 Subject: [PATCH] TargetParser: Fix comments in enum(s) introduced in r239150. [-Wdocumentation] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239211 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/TargetParser.h | 12 ++++++------ lib/Support/TargetParser.cpp | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/llvm/Support/TargetParser.h b/include/llvm/Support/TargetParser.h index f59d5e823b6..777ee2075d6 100644 --- a/include/llvm/Support/TargetParser.h +++ b/include/llvm/Support/TargetParser.h @@ -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. diff --git a/lib/Support/TargetParser.cpp b/lib/Support/TargetParser.cpp index bd83c9c71fd..757483b9586 100644 --- a/lib/Support/TargetParser.cpp +++ b/lib/Support/TargetParser.cpp @@ -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[] = { -- 2.34.1