mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
Fix some weird indenting in code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43202 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -25,9 +25,9 @@
|
|||||||
|
|
||||||
<div class="doc_code">
|
<div class="doc_code">
|
||||||
<pre>
|
<pre>
|
||||||
int mul_add(int x, int y, int z) {
|
int mul_add(int x, int y, int z) {
|
||||||
return x * y + z;
|
return x * y + z;
|
||||||
}
|
}
|
||||||
</pre>
|
</pre>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -35,12 +35,12 @@
|
|||||||
|
|
||||||
<div class="doc_code">
|
<div class="doc_code">
|
||||||
<pre>
|
<pre>
|
||||||
define i32 @mul_add(i32 %x, i32 %y, i32 %z) {
|
define i32 @mul_add(i32 %x, i32 %y, i32 %z) {
|
||||||
entry:
|
entry:
|
||||||
%tmp = mul i32 %x, %y
|
%tmp = mul i32 %x, %y
|
||||||
%tmp2 = add i32 %tmp, %z
|
%tmp2 = add i32 %tmp, %z
|
||||||
ret i32 %tmp2
|
ret i32 %tmp2
|
||||||
}
|
}
|
||||||
</pre>
|
</pre>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user