[llvm] r318243 - [X86] Correct the spelling of pentiumpro in X86TargetParser.def

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 14 17:01:51 PST 2017


Author: ctopper
Date: Tue Nov 14 17:01:50 2017
New Revision: 318243

URL: http://llvm.org/viewvc/llvm-project?rev=318243&view=rev
Log:
[X86] Correct the spelling of pentiumpro in X86TargetParser.def

Thanks to Erich Keane for spotting this.

Modified:
    llvm/trunk/include/llvm/Support/X86TargetParser.def

Modified: llvm/trunk/include/llvm/Support/X86TargetParser.def
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/X86TargetParser.def?rev=318243&r1=318242&r2=318243&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/X86TargetParser.def (original)
+++ llvm/trunk/include/llvm/Support/X86TargetParser.def Tue Nov 14 17:01:50 2017
@@ -50,7 +50,7 @@ X86_CPU_TYPE                  ("i386",
 X86_CPU_TYPE                  ("i486",        INTEL_i486)
 X86_CPU_TYPE                  ("pentium",     INTEL_PENTIUM)
 X86_CPU_TYPE                  ("pentium-mmx", INTEL_PENTIUM_MMX)
-X86_CPU_TYPE                  ("pentium-pro", INTEL_PENTIUM_PRO)
+X86_CPU_TYPE                  ("pentiumpro",  INTEL_PENTIUM_PRO)
 X86_CPU_TYPE                  ("pentium2",    INTEL_PENTIUM_II)
 X86_CPU_TYPE                  ("pentium3",    INTEL_PENTIUM_III)
 X86_CPU_TYPE                  ("pentium4",    INTEL_PENTIUM_IV)




More information about the llvm-commits mailing list