diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-07-01 22:41:06 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-07-01 22:41:06 +0000 |
commit | 6ced1d12dd7ee18d65a6df6e66c9662753a5876d (patch) | |
tree | c42b569fcab40aa939e534a6f0f5211dc4c20b28 /lib/Support | |
parent | 385e930d55f3ecd3c9538823dfa5896a12461845 (diff) |
Add initial *-*-rtems* target, from Joel Sherrill
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134282 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/Triple.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index dbdb303a4f..bf1fa09a4d 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -113,6 +113,7 @@ const char *Triple::getOSTypeName(OSType Kind) { case Win32: return "win32"; case Haiku: return "haiku"; case Minix: return "minix"; + case RTEMS: return "rtems"; } return "<invalid>"; |