diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-12-10 03:30:21 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-12-10 03:30:21 +0000 |
commit | dc5cafb74e44ab60f351b48d3d95f405bace6190 (patch) | |
tree | b6bf00ef270866f6076cc56f3f893358a9ed2f4c | |
parent | 71183b6739707a34464187adf1d7df8848415fe5 (diff) | |
download | bcm5719-llvm-dc5cafb74e44ab60f351b48d3d95f405bace6190.tar.gz bcm5719-llvm-dc5cafb74e44ab60f351b48d3d95f405bace6190.zip |
Fix a typo spotted by Nick Lewycky.
llvm-svn: 44774
-rw-r--r-- | llvm/docs/LangRef.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 80817e28dcc..5d20a76fdfe 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -703,7 +703,7 @@ an optional <a href="#linkage">linkage type</a>, an optional <a href="#paramattrs">parameter attribute</a> for the return type, a function name, a (possibly empty) argument list (each with optional <a href="#paramattrs">parameter attributes</a>), an optional section, an -optional alignment, an optional <a href="gc">garbage collector name</a>, an +optional alignment, an optional <a href="#gc">garbage collector name</a>, an opening curly brace, a list of basic blocks, and a closing curly brace. LLVM function declarations consist of the "<tt>declare</tt>" keyword, an @@ -712,7 +712,7 @@ optional <a href="#linkage">linkage type</a>, an optional <a href="#callingconv">calling convention</a>, a return type, an optional <a href="#paramattrs">parameter attribute</a> for the return type, a function name, a possibly empty list of arguments, an optional alignment, and an optional -<a href="gc">garbage collector name</a>.</p> +<a href="#gc">garbage collector name</a>.</p> <p>A function definition contains a list of basic blocks, forming the CFG for the function. Each basic block may optionally start with a label (giving the |