[llvm-commits] CVS: llvm/docs/FAQ.html
Tanya Brethour
tbrethou at cs.uiuc.edu
Mon Apr 25 13:37:08 PDT 2005
Changes in directory llvm/docs:
FAQ.html updated: 1.29 -> 1.30
---
Log message:
Added question about turning off all optimizations. I think this has been asked once or twice.
---
Diffs of the changes: (+19 -1)
FAQ.html | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletion(-)
Index: llvm/docs/FAQ.html
diff -u llvm/docs/FAQ.html:1.29 llvm/docs/FAQ.html:1.30
--- llvm/docs/FAQ.html:1.29 Fri Feb 25 14:30:21 2005
+++ llvm/docs/FAQ.html Mon Apr 25 15:36:56 2005
@@ -67,6 +67,11 @@
When I compile code using the LLVM GCC front end, it complains that it
cannot find libcrtend.a.
</li>
+
+ <li>
+ How can I disable all optimizations when compiling code using the LLVM GCC front end?
+ </li>
+
</ol>
</li>
@@ -442,6 +447,19 @@
</pre>
</div>
+<div class="question">
+<p>
+How can I disable all optimizations when compiling code using the LLVM GCC front end?
+</p>
+</div>
+
+<div class="answer">
+<p>
+Passing "-Wa,-disable-opt -Wl,-disable-opt" will disable *all* cleanup and
+optimizations done at the llvm level, leaving you with the truly horrible
+code that you desire.
+</p>
+</div>
<!-- *********************************************************************** -->
<div class="doc_section">
@@ -556,7 +574,7 @@
src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
<a href="http://llvm.cs.uiuc.edu">LLVM Compiler Infrastructure</a><br>
- Last modified: $Date: 2005/02/25 20:30:21 $
+ Last modified: $Date: 2005/04/25 20:36:56 $
</address>
</body>
More information about the llvm-commits
mailing list