LLVM tutorial: fix broken links/anchors
[oota-llvm.git] / docs / tutorial / LangImpl9.rst
index 6c43d53f90f963bfbff19c73e93a78f2fd876d32..f02bba857c149265c76b0d9f7bd20f551cf75643 100644 (file)
@@ -49,7 +49,7 @@ For example, try adding:
    extending the type system in all sorts of interesting ways. Simple
    arrays are very easy and are quite useful for many different
    applications. Adding them is mostly an exercise in learning how the
-   LLVM `getelementptr <../LangRef.html#i_getelementptr>`_ instruction
+   LLVM `getelementptr <../LangRef.html#getelementptr-instruction>`_ instruction
    works: it is so nifty/unconventional, it `has its own
    FAQ <../GetElementPtr.html>`_! If you add support for recursive types
    (e.g. linked lists), make sure to read the `section in the LLVM