diff options
author | Eric Christopher <echristo@gmail.com> | 2016-06-02 21:09:17 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2016-06-02 21:09:17 +0000 |
commit | d9804bb696bc1d6a64551b67e0a55abd222f1e86 (patch) | |
tree | 607ee888878d20f48602b1ec2d28d6b877bd6b27 /llvm/lib/Support/Host.cpp | |
parent | 5db9d661f09344ccf3f922a5b1f67cdf3afdb3f9 (diff) | |
download | llvm-d9804bb696bc1d6a64551b67e0a55abd222f1e86.zip llvm-d9804bb696bc1d6a64551b67e0a55abd222f1e86.tar.gz llvm-d9804bb696bc1d6a64551b67e0a55abd222f1e86.tar.bz2 |
Fix a couple of misformatted comments spotted in post-commit review.
llvm-svn: 271596
Diffstat (limited to 'llvm/lib/Support/Host.cpp')
-rw-r--r-- | llvm/lib/Support/Host.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index f584097..12ff9cf 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -74,8 +74,7 @@ static ssize_t LLVM_ATTRIBUTE_UNUSED readCpuInfo(void *Buf, size_t Size) { defined(_M_X64) /// GetX86CpuIDAndInfo - Execute the specified cpuid and return the 4 values in -/// the -/// specified arguments. If we can't run cpuid on the host, return true. +/// the specified arguments. If we can't run cpuid on the host, return true. static bool GetX86CpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX, unsigned *rECX, unsigned *rEDX) { #if defined(__GNUC__) || defined(__clang__) @@ -302,28 +301,28 @@ StringRef sys::getHostCPUName() { case 0x09: // Intel Pentium M processor, Intel Celeron M processor model // 09. case 0x0d: // Intel Pentium M processor, Intel Celeron M processor, model - // 0Dh. All processors are manufactured using the 90 nm process. + // 0Dh. All processors are manufactured using the 90 nm process. case 0x15: // Intel EP80579 Integrated Processor and Intel EP80579 // Integrated Processor with Intel QuickAssist Technology return "pentium-m"; case 0x0e: // Intel Core Duo processor, Intel Core Solo processor, model - // 0Eh. All processors are manufactured using the 65 nm process. + // 0Eh. All processors are manufactured using the 65 nm process. return "yonah"; case 0x0f: // Intel Core 2 Duo processor, Intel Core 2 Duo mobile // processor, Intel Core 2 Quad processor, Intel Core 2 Quad // mobile processor, Intel Core 2 Extreme processor, Intel // Pentium Dual-Core processor, Intel Xeon processor, model - // 0Fh. All processors are manufactured using the 65 nm process. + // 0Fh. All processors are manufactured using the 65 nm process. case 0x16: // Intel Celeron processor model 16h. All processors are // manufactured using the 65 nm process return "core2"; case 0x17: // Intel Core 2 Extreme processor, Intel Xeon processor, model - // 17h. All processors are manufactured using the 45 nm process. - // - // 45nm: Penryn , Wolfdale, Yorkfield (XE) + // 17h. All processors are manufactured using the 45 nm process. + // + // 45nm: Penryn , Wolfdale, Yorkfield (XE) case 0x1d: // Intel Xeon processor MP. All processors are manufactured // using // the 45 nm process. |