[llvm-commits] [llvm] r77908 - /llvm/trunk/include/llvm/ADT/Triple.h

Daniel Dunbar daniel at zuster.org
Sun Aug 2 12:41:21 PDT 2009


Author: ddunbar
Date: Sun Aug  2 14:41:20 2009
New Revision: 77908

URL: http://llvm.org/viewvc/llvm-project?rev=77908&view=rev
Log:
Adjust comment to distinguish between target name and triple target name they
match.

Modified:
    llvm/trunk/include/llvm/ADT/Triple.h

Modified: llvm/trunk/include/llvm/ADT/Triple.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/Triple.h?rev=77908&r1=77907&r2=77908&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ADT/Triple.h (original)
+++ llvm/trunk/include/llvm/ADT/Triple.h Sun Aug  2 14:41:20 2009
@@ -36,21 +36,21 @@
   enum ArchType {
     UnknownArch,
     
-    alpha,   // alpha
-    arm,     // arm, armv.*
-    bfin,    // blackfin
-    cellspu, // spu, cellspu
-    mips,    // mips, mipsallegrex
-    mipsel,  // mipsel, mipsallegrexel, psp
-    msp430,  // msp430
-    ppc,     // powerpc
-    ppc64,   // powerpc64
-    sparc,   // sparc
-    systemz, // s390x
-    thumb,   // thumb, thumbv.*
-    x86,     // i[3-9]86
-    x86_64,  // amd64, x86_64
-    xcore,   // xcore
+    alpha,   // Alpha: alpha
+    arm,     // ARM; arm, armv.*
+    bfin,    // Blackfin: bfin
+    cellspu, // CellSPU: spu, cellspu
+    mips,    // MIPS: mips, mipsallegrex
+    mipsel,  // MIPSEL: mipsel, mipsallegrexel, psp
+    msp430,  // MPS430: msp430
+    ppc,     // PPC: powerpc
+    ppc64,   // PPC64: powerpc64
+    sparc,   // Sparc: sparc
+    systemz, // SystemZ: s390x
+    thumb,   // Thumb: thumb, thumbv.*
+    x86,     // X86: i[3-9]86
+    x86_64,  // X86-64: amd64, x86_64
+    xcore,   // XCore: xcore
 
     InvalidArch
   };





More information about the llvm-commits mailing list