Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(443)

Side by Side Diff: include/llvm/ADT/Triple.h

Issue 7484050: Add initial support for *-*-nacl target. (Closed) Base URL: http://llvm.org/svn/llvm-project/llvm/trunk/
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 //===-- llvm/ADT/Triple.h - Target triple helper class ----------*- C++ -*-===// 1 //===-- llvm/ADT/Triple.h - Target triple helper class ----------*- C++ -*-===//
2 // 2 //
3 // The LLVM Compiler Infrastructure 3 // The LLVM Compiler Infrastructure
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 9
10 #ifndef LLVM_ADT_TRIPLE_H 10 #ifndef LLVM_ADT_TRIPLE_H
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 Lv2, // PS3 89 Lv2, // PS3
90 MacOSX, 90 MacOSX,
91 MinGW32, // i*86-pc-mingw32, *-w64-mingw32 91 MinGW32, // i*86-pc-mingw32, *-w64-mingw32
92 NetBSD, 92 NetBSD,
93 OpenBSD, 93 OpenBSD,
94 Psp, 94 Psp,
95 Solaris, 95 Solaris,
96 Win32, 96 Win32,
97 Haiku, 97 Haiku,
98 Minix, 98 Minix,
99 RTEMS 99 RTEMS,
100 NativeClient
100 }; 101 };
101 enum EnvironmentType { 102 enum EnvironmentType {
102 UnknownEnvironment, 103 UnknownEnvironment,
103 104
104 GNU, 105 GNU,
105 GNUEABI, 106 GNUEABI,
106 EABI, 107 EABI,
107 MachO 108 MachO
108 }; 109 };
109 110
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 /// arch(3)). 381 /// arch(3)).
381 static ArchType getArchTypeForDarwinArchName(StringRef Str); 382 static ArchType getArchTypeForDarwinArchName(StringRef Str);
382 383
383 /// @} 384 /// @}
384 }; 385 };
385 386
386 } // End llvm namespace 387 } // End llvm namespace
387 388
388 389
389 #endif 390 #endif
OLDNEW
« autoconf/configure.ac ('K') | « configure ('k') | lib/Support/Triple.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698