[llvm-commits] [llvm] r43202 - /llvm/trunk/docs/tutorial/Tutorial1.html

Owen Anderson resistor at mac.com
Fri Oct 19 22:41:39 PDT 2007


Author: resistor
Date: Sat Oct 20 00:41:39 2007
New Revision: 43202

URL: http://llvm.org/viewvc/llvm-project?rev=43202&view=rev
Log:
Fix some weird indenting in code.

Modified:
    llvm/trunk/docs/tutorial/Tutorial1.html

Modified: llvm/trunk/docs/tutorial/Tutorial1.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/Tutorial1.html?rev=43202&r1=43201&r2=43202&view=diff

==============================================================================
--- llvm/trunk/docs/tutorial/Tutorial1.html (original)
+++ llvm/trunk/docs/tutorial/Tutorial1.html Sat Oct 20 00:41:39 2007
@@ -25,9 +25,9 @@
 
 <div class="doc_code">
 <pre>
-  int mul_add(int x, int y, int z) {
-      return x * y + z;
-  }
+int mul_add(int x, int y, int z) {
+  return x * y + z;
+}
 </pre>
 </div>
 
@@ -35,12 +35,12 @@
 
 <div class="doc_code">
 <pre>
-  define i32 @mul_add(i32 %x, i32 %y, i32 %z) {
-  entry:
-  	%tmp = mul i32 %x, %y
-  	%tmp2 = add i32 %tmp, %z
-  	ret i32 %tmp2
-  }
+define i32 @mul_add(i32 %x, i32 %y, i32 %z) {
+entry:
+  %tmp = mul i32 %x, %y
+  %tmp2 = add i32 %tmp, %z
+  ret i32 %tmp2
+}
 </pre>
 </div>
 





More information about the llvm-commits mailing list