aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-08-02 19:41:20 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-08-02 19:41:20 +0000
commit45064eecd341e7aa6c98fcfa9909c70383fcd170 (patch)
tree71c0f0ac58c47237cd914ab360aebeaddd391333 /include/llvm/ADT
parenta5e52f5e733684b90a59c1f50dc899c0048055c9 (diff)
downloadexternal_llvm-45064eecd341e7aa6c98fcfa9909c70383fcd170.zip
external_llvm-45064eecd341e7aa6c98fcfa9909c70383fcd170.tar.gz
external_llvm-45064eecd341e7aa6c98fcfa9909c70383fcd170.tar.bz2
Adjust comment to distinguish between target name and triple target name they
match. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77908 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/Triple.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/include/llvm/ADT/Triple.h b/include/llvm/ADT/Triple.h
index 5d584f4..7ae2c30 100644
--- a/include/llvm/ADT/Triple.h
+++ b/include/llvm/ADT/Triple.h
@@ -36,21 +36,21 @@ public:
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
};