From: Owen Anderson Date: Sat, 20 Oct 2007 05:41:39 +0000 (+0000) Subject: Fix some weird indenting in code. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7d69c95759f9adba42c606c823e73f796dc5e069;p=oota-llvm.git Fix some weird indenting in code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43202 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/tutorial/Tutorial1.html b/docs/tutorial/Tutorial1.html index 422f7996952..bb7f8d1c488 100644 --- a/docs/tutorial/Tutorial1.html +++ b/docs/tutorial/Tutorial1.html @@ -25,9 +25,9 @@
-  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;
+}
 
@@ -35,12 +35,12 @@
-  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
+}