for instructions with void type we have no choice but print the instruction as
[oota-llvm.git] / docs / FAQ.html
index 83719b74e4098b98c80f794383c332e679cc401b..7e15df21f38c97175e807d4b11d0108e9b772a73 100644 (file)
@@ -426,7 +426,7 @@ Stop.
 </div>
 
 <div class="question">
-<p><a href="srcdir-objdir">When I compile LLVM-GCC with srcdir == objdir, it
+<p><a name="srcdir-objdir">When I compile LLVM-GCC with srcdir == objdir, it
    fails. Why?</a></p>
 </div>
 
@@ -700,7 +700,7 @@ Stop.
 
 <p>Another example is <tt>sizeof</tt>. It's common for <tt>sizeof(long)</tt> to
    vary between platforms. In most C front-ends, <tt>sizeof</tt> is expanded to
-   a constant immediately, thus hardwaring a platform-specific detail.</p>
+   a constant immediately, thus hard-wiring a platform-specific detail.</p>
 
 <p>Also, since many platforms define their ABIs in terms of C, and since LLVM is
    lower-level than C, front-ends currently must emit platform-specific IR in
@@ -764,7 +764,7 @@ Stop.
 
 <div class="question">
 <p><a name="undef">What is this "<tt>undef</tt>" thing that shows up in my
-   code?</p>
+   code?</a></p>
 </div>
 
 <div class="answer">