Fix some weird indenting in code.
authorOwen Anderson <resistor@mac.com>
Sat, 20 Oct 2007 05:41:39 +0000 (05:41 +0000)
committerOwen Anderson <resistor@mac.com>
Sat, 20 Oct 2007 05:41:39 +0000 (05:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43202 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/Tutorial1.html

index 422f799695233af9728dc34b115ec6715f73b9d1..bb7f8d1c4886168a9e66f1202bf51a9d7bc83deb 100644 (file)
@@ -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>
 
 
 <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>