diff options
author | Dan Gohman <gohman@apple.com> | 2010-05-28 17:07:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-05-28 17:07:41 +0000 |
commit | 3dfb3cfb383b64e2b5db30ec429fc130ac02e45d (patch) | |
tree | 8dc842287c3fb44fada024860a6b70093bca5775 /docs/tutorial/LangImpl7.html | |
parent | 90a23220235ad037d7c65ec5c2bb27d87d482b6c (diff) | |
download | external_llvm-3dfb3cfb383b64e2b5db30ec429fc130ac02e45d.zip external_llvm-3dfb3cfb383b64e2b5db30ec429fc130ac02e45d.tar.gz external_llvm-3dfb3cfb383b64e2b5db30ec429fc130ac02e45d.tar.bz2 |
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/LangImpl7.html')
-rw-r--r-- | docs/tutorial/LangImpl7.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/tutorial/LangImpl7.html b/docs/tutorial/LangImpl7.html index 0b46ba5..8a0381f 100644 --- a/docs/tutorial/LangImpl7.html +++ b/docs/tutorial/LangImpl7.html @@ -558,10 +558,10 @@ then: ; preds = %entry else: ; preds = %entry <b>%x3 = load double* %x1</b> %subtmp = fsub double %x3, 1.000000e+00 - %calltmp = call double @fib( double %subtmp ) + %calltmp = call double @fib(double %subtmp) <b>%x4 = load double* %x1</b> %subtmp5 = fsub double %x4, 2.000000e+00 - %calltmp6 = call double @fib( double %subtmp5 ) + %calltmp6 = call double @fib(double %subtmp5) %addtmp = fadd double %calltmp, %calltmp6 br label %ifcont @@ -596,9 +596,9 @@ then: else: %subtmp = fsub double <b>%x</b>, 1.000000e+00 - %calltmp = call double @fib( double %subtmp ) + %calltmp = call double @fib(double %subtmp) %subtmp5 = fsub double <b>%x</b>, 2.000000e+00 - %calltmp6 = call double @fib( double %subtmp5 ) + %calltmp6 = call double @fib(double %subtmp5) %addtmp = fadd double %calltmp, %calltmp6 br label %ifcont @@ -626,9 +626,9 @@ entry: else: %subtmp = fsub double %x, 1.000000e+00 - %calltmp = call double @fib( double %subtmp ) + %calltmp = call double @fib(double %subtmp) %subtmp5 = fsub double %x, 2.000000e+00 - %calltmp6 = call double @fib( double %subtmp5 ) + %calltmp6 = call double @fib(double %subtmp5) %addtmp = fadd double %calltmp, %calltmp6 ret double %addtmp |