diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-09-09 13:30:48 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-09-09 13:30:48 +0000 |
commit | d4d4c7fd0d35cca144e696be2740a9e34c29608a (patch) | |
tree | e3a0f3b870305c77dcf74d1b9911a95d51164c90 /lib | |
parent | 7aed4ec9570f8e1d86894187fb0a9f53bf4ad00a (diff) | |
download | external_llvm-d4d4c7fd0d35cca144e696be2740a9e34c29608a.zip external_llvm-d4d4c7fd0d35cca144e696be2740a9e34c29608a.tar.gz external_llvm-d4d4c7fd0d35cca144e696be2740a9e34c29608a.tar.bz2 |
lib/System/Host.cpp: 7bit-ize. Eliminate "TM" and "(R)" in comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113486 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/System/Host.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/lib/System/Host.cpp b/lib/System/Host.cpp index 176fe8a..822814f 100644 --- a/lib/System/Host.cpp +++ b/lib/System/Host.cpp @@ -129,21 +129,21 @@ std::string sys::getHostCPUName() { return "i386"; case 4: switch (Model) { - case 0: // Intel486TM DX processors - case 1: // Intel486TM DX processors + case 0: // Intel486 DX processors + case 1: // Intel486 DX processors case 2: // Intel486 SX processors - case 3: // Intel487TM processors, IntelDX2 OverDrive® processors, - // IntelDX2TM processors + case 3: // Intel487 processors, IntelDX2 OverDrive processors, + // IntelDX2 processors case 4: // Intel486 SL processor - case 5: // IntelSX2TM processors + case 5: // IntelSX2 processors case 7: // Write-Back Enhanced IntelDX2 processors - case 8: // IntelDX4 OverDrive processors, IntelDX4TM processors + case 8: // IntelDX4 OverDrive processors, IntelDX4 processors default: return "i486"; } case 5: switch (Model) { case 1: // Pentium OverDrive processor for Pentium processor (60, 66), - // Pentium® processors (60, 66) + // Pentium processors (60, 66) case 2: // Pentium OverDrive processor for Pentium processor (75, 90, // 100, 120, 133), Pentium processors (75, 90, 100, 120, 133, // 150, 166, 200) @@ -151,9 +151,9 @@ std::string sys::getHostCPUName() { // systems return "pentium"; - case 4: // Pentium OverDrive processor with MMXTM technology for Pentium + case 4: // Pentium OverDrive processor with MMX technology for Pentium // processor (75, 90, 100, 120, 133), Pentium processor with - // MMXTM technology (166, 200) + // MMX technology (166, 200) return "pentium-mmx"; default: return "pentium"; @@ -166,7 +166,7 @@ std::string sys::getHostCPUName() { case 3: // Intel Pentium II OverDrive processor, Pentium II processor, // model 03 case 5: // Pentium II processor, model 05, Pentium II Xeon processor, - // model 05, and Intel® Celeron® processor, model 05 + // model 05, and Intel Celeron processor, model 05 case 6: // Celeron processor, model 06 return "pentium2"; @@ -183,13 +183,13 @@ std::string sys::getHostCPUName() { // 0Dh. All processors are manufactured using the 90 nm process. return "pentium-m"; - case 14: // Intel CoreTM Duo processor, Intel CoreTM Solo processor, model + case 14: // Intel Core Duo processor, Intel Core Solo processor, model // 0Eh. All processors are manufactured using the 65 nm process. return "yonah"; - case 15: // Intel CoreTM2 Duo processor, Intel CoreTM2 Duo mobile - // processor, Intel CoreTM2 Quad processor, Intel CoreTM2 Quad - // mobile processor, Intel CoreTM2 Extreme processor, Intel + case 15: // 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. case 22: // Intel Celeron processor model 16h. All processors are @@ -200,7 +200,7 @@ std::string sys::getHostCPUName() { // Integrated Processor with Intel QuickAssist Technology return "i686"; // FIXME: ??? - case 23: // Intel CoreTM2 Extreme processor, Intel Xeon processor, model + case 23: // Intel Core 2 Extreme processor, Intel Xeon processor, model // 17h. All processors are manufactured using the 45 nm process. // // 45nm: Penryn , Wolfdale, Yorkfield (XE) @@ -225,7 +225,7 @@ std::string sys::getHostCPUName() { case 1: // Pentium 4 processor, Intel Xeon processor, Intel Xeon // processor MP, and Intel Celeron processor. All processors are // model 01h and manufactured using the 0.18 micron process. - case 2: // Pentium 4 processor, Mobile Intel Pentium 4 processor – M, + case 2: // Pentium 4 processor, Mobile Intel Pentium 4 processor - M, // Intel Xeon processor, Intel Xeon processor MP, Intel Celeron // processor, and Mobile Intel Celeron processor. All processors // are model 02h and manufactured using the 0.13 micron process. |