aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/LangImpl2.html
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-10-16 08:06:54 +0000
committerBill Wendling <isanbard@gmail.com>2011-10-16 08:06:54 +0000
commit545a2beb44e10e02f590f50053129935db54b9bf (patch)
tree6cccf134db31d7c559e2972450709e59e6c4da09 /docs/tutorial/LangImpl2.html
parentb53fa8bf19a51f0c49a9f8b6ede3e2ff3bdfb961 (diff)
downloadexternal_llvm-545a2beb44e10e02f590f50053129935db54b9bf.zip
external_llvm-545a2beb44e10e02f590f50053129935db54b9bf.tar.gz
external_llvm-545a2beb44e10e02f590f50053129935db54b9bf.tar.bz2
Update tutorial to reflect the current APIs. Also correct a small omission in
LangImpl6.html (it needed to defined the 'binary :' operator). PR9052 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142123 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/LangImpl2.html')
-rw-r--r--docs/tutorial/LangImpl2.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorial/LangImpl2.html b/docs/tutorial/LangImpl2.html
index acccd20..60e4f7f 100644
--- a/docs/tutorial/LangImpl2.html
+++ b/docs/tutorial/LangImpl2.html
@@ -801,10 +801,10 @@ course.) To build this, just compile with:</p>
<div class="doc_code">
<pre>
- # Compile
- g++ -g -O3 toy.cpp
- # Run
- ./a.out
+# Compile
+clang++ -g -O3 toy.cpp
+# Run
+./a.out
</pre>
</div>