diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-18 04:43:27 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-18 04:43:27 +0000 |
commit | 0545fd1108b3dc25749d2d8d84c5f135f98c9367 (patch) | |
tree | f92344cebbe90e1e6f3bf895829a85f5628ca0d1 /include/llvm/ADT | |
parent | a59f39b8fe424ea505b4c75f476a7ac915e9d606 (diff) | |
download | external_llvm-0545fd1108b3dc25749d2d8d84c5f135f98c9367.zip external_llvm-0545fd1108b3dc25749d2d8d84c5f135f98c9367.tar.gz external_llvm-0545fd1108b3dc25749d2d8d84c5f135f98c9367.tar.bz2 |
Add Triple matching for pic16 arch and solaris OS.
- Patch by Yonggang Luo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79314 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r-- | include/llvm/ADT/Triple.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/ADT/Triple.h b/include/llvm/ADT/Triple.h index 2ea8f20..336760f 100644 --- a/include/llvm/ADT/Triple.h +++ b/include/llvm/ADT/Triple.h @@ -43,6 +43,7 @@ public: mips, // MIPS: mips, mipsallegrex mipsel, // MIPSEL: mipsel, mipsallegrexel, psp msp430, // MPS430: msp430 + pic16, // PIC16: pic16 ppc, // PPC: powerpc ppc64, // PPC64: powerpc64 sparc, // Sparc: sparc @@ -73,6 +74,7 @@ public: MinGW64, NetBSD, OpenBSD, + Solaris, Win32 }; |