From d9eceee053d20451a804c248ef71ed8a28297d94 Mon Sep 17 00:00:00 2001
From: John Criswell
Date: Wed, 8 Dec 2004 18:04:14 +0000
Subject: [PATCH] Mention in the exposition that lli can JIT on PowerPC now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18646 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/GettingStarted.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index eb8d1d0b07c..d23ac921302 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -1228,7 +1228,7 @@ information is in the Command Guide.
can directly execute LLVM bytecode (although very slowly...). In addition
to a simple interpreter, lli also has a tracing mode (entered by
specifying -trace on the command line). Finally, for
- architectures that support it (currently only x86 and Sparc), by default,
+ architectures that support it (currently x86, Sparc, and PowerPC), by default,
lli will function as a Just-In-Time compiler (if the
functionality was compiled in), and will execute the code much
faster than the interpreter.