Update tutorial to reflect the current APIs. Also correct a small omission in
[oota-llvm.git] / docs / tutorial / LangImpl2.html
index acccd20a09048426ca3dbd62e2dfaa18d4b36f7a..60e4f7f5e4e928c51c42d7349734fe838bb1190d 100644 (file)
@@ -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>