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 | 9f2be01f868dc3fce5d19c9fcd5feaa054818886 (patch) | |
tree | 72e984f9586af13176b00619c5148ac5185ccfa5 /llvm/docs/tutorial | |
parent | f747ab10fb0fb2ac0f72bd9d7cad649d10415af8 (diff) | |
download | bcm5719-llvm-9f2be01f868dc3fce5d19c9fcd5feaa054818886.tar.gz bcm5719-llvm-9f2be01f868dc3fce5d19c9fcd5feaa054818886.zip |
Fix some weird indenting in code.
llvm-svn: 43202
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/Tutorial1.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/llvm/docs/tutorial/Tutorial1.html b/llvm/docs/tutorial/Tutorial1.html index 422f7996952..bb7f8d1c488 100644 --- a/llvm/docs/tutorial/Tutorial1.html +++ b/llvm/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> |