summaryrefslogtreecommitdiff
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorIvan Krasin <krasin@chromium.org>2011-08-23 16:59:00 +0000
committerIvan Krasin <krasin@chromium.org>2011-08-23 16:59:00 +0000
commit38fb2db6c9f64a59875d034e2a2cab27603c1884 (patch)
tree56f399562e1869a8c9897f39e8e133f3b889d92f /include/llvm/ADT
parent691a4882ed086912edfe60da225bdc3f3e2f9a82 (diff)
downloadllvm-38fb2db6c9f64a59875d034e2a2cab27603c1884.tar.gz
llvm-38fb2db6c9f64a59875d034e2a2cab27603c1884.tar.bz2
llvm-38fb2db6c9f64a59875d034e2a2cab27603c1884.tar.xz
This patch adds support of le32 pseudo-cpu that stands for generic
32-bit little-endian CPU. Used by PNaCl and Emscripten. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138335 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/Triple.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/ADT/Triple.h b/include/llvm/ADT/Triple.h
index 86817e93c0..22d68a11d7 100644
--- a/include/llvm/ADT/Triple.h
+++ b/include/llvm/ADT/Triple.h
@@ -63,6 +63,7 @@ public:
mblaze, // MBlaze: mblaze
ptx32, // PTX: ptx (32-bit)
ptx64, // PTX: ptx (64-bit)
+ le32, // le32: generic little-endian 32-bit CPU (PNaCl / Emscripten)
InvalidArch
};