summaryrefslogtreecommitdiff
path: root/docs/tutorial/OCamlLangImpl3.html
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-05-28 17:07:41 +0000
committerDan Gohman <gohman@apple.com>2010-05-28 17:07:41 +0000
commit3dfb3cfb383b64e2b5db30ec429fc130ac02e45d (patch)
tree8dc842287c3fb44fada024860a6b70093bca5775 /docs/tutorial/OCamlLangImpl3.html
parent90a23220235ad037d7c65ec5c2bb27d87d482b6c (diff)
downloadllvm-3dfb3cfb383b64e2b5db30ec429fc130ac02e45d.tar.gz
llvm-3dfb3cfb383b64e2b5db30ec429fc130ac02e45d.tar.bz2
llvm-3dfb3cfb383b64e2b5db30ec429fc130ac02e45d.tar.xz
Fix whitespace to be more consistent with AsmPrinter's style.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104962 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/OCamlLangImpl3.html')
-rw-r--r--docs/tutorial/OCamlLangImpl3.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/tutorial/OCamlLangImpl3.html b/docs/tutorial/OCamlLangImpl3.html
index febd7f528c..d55fd0fd0c 100644
--- a/docs/tutorial/OCamlLangImpl3.html
+++ b/docs/tutorial/OCamlLangImpl3.html
@@ -524,8 +524,8 @@ ready&gt; <b>def bar(a) foo(a, 4.0) + bar(31337);</b>
Read function definition:
define double @bar(double %a) {
entry:
- %calltmp = call double @foo( double %a, double 4.000000e+00 )
- %calltmp1 = call double @bar( double 3.133700e+04 )
+ %calltmp = call double @foo(double %a, double 4.000000e+00)
+ %calltmp1 = call double @bar(double 3.133700e+04)
%addtmp = fadd double %calltmp, %calltmp1
ret double %addtmp
}
@@ -546,7 +546,7 @@ ready&gt; <b>cos(1.234);</b>
Read top-level expression:
define double @""() {
entry:
- %calltmp = call double @cos( double 1.234000e+00 )
+ %calltmp = call double @cos(double 1.234000e+00)
ret double %calltmp
}
</pre>
@@ -579,8 +579,8 @@ entry:
define double @bar(double %a) {
entry:
- %calltmp = call double @foo( double %a, double 4.000000e+00 )
- %calltmp1 = call double @bar( double 3.133700e+04 )
+ %calltmp = call double @foo(double %a, double 4.000000e+00)
+ %calltmp1 = call double @bar(double 3.133700e+04)
%addtmp = fadd double %calltmp, %calltmp1
ret double %addtmp
}
@@ -589,7 +589,7 @@ declare double @cos(double)
define double @""() {
entry:
- %calltmp = call double @cos( double 1.234000e+00 )
+ %calltmp = call double @cos(double 1.234000e+00)
ret double %calltmp
}
</pre>