diff options
author | Owen Anderson <resistor@mac.com> | 2007-10-20 05:41:39 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-10-20 05:41:39 +0000 |
commit | 22340ef7c079f7c5dcfc97a16aa7793a6c10dd71 (patch) | |
tree | b0ec0090c8b270a2039c490a00cc49a24a9f1b89 /docs | |
parent | 64255004ca1f8802eae312530413cb2711a4d067 (diff) | |
download | external_llvm-22340ef7c079f7c5dcfc97a16aa7793a6c10dd71.zip external_llvm-22340ef7c079f7c5dcfc97a16aa7793a6c10dd71.tar.gz external_llvm-22340ef7c079f7c5dcfc97a16aa7793a6c10dd71.tar.bz2 |
Fix some weird indenting in code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43202 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tutorial/Tutorial1.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/tutorial/Tutorial1.html b/docs/tutorial/Tutorial1.html index 422f799..bb7f8d1 100644 --- a/docs/tutorial/Tutorial1.html +++ b/docs/tutorial/Tutorial1.html @@ -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> |