This repository was archived by the owner on Feb 5, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -129,9 +129,10 @@ lexical features of LLVM:
129
129
#. Unnamed temporaries are created when the result of a computation is
130
130
not assigned to a named value.
131
131
#. Unnamed temporaries are numbered sequentially (using a per-function
132
- incrementing counter, starting with 0). Note that basic blocks are
133
- included in this numbering. For example, if the entry basic block is not
134
- given a label name, then it will get number 0.
132
+ incrementing counter, starting with 0). Note that basic blocks and unnamed
133
+ function parameters are included in this numbering. For example, if the
134
+ entry basic block is not given a label name and all function parameters are
135
+ named, then it will get number 0.
135
136
136
137
It also shows a convention that we follow in this document. When
137
138
demonstrating instructions, we will follow an instruction with a comment
@@ -681,6 +682,14 @@ Syntax::
681
682
[unnamed_addr] [fn Attrs] [section "name"] [comdat $<ComdatName>]
682
683
[align N] [gc] [prefix Constant] { ... }
683
684
685
+ The argument list is a comma seperated sequence of arguments where each
686
+ argument is of the following form
687
+
688
+ Syntax::
689
+
690
+ <type> [parameter Attrs] [name]
691
+
692
+
684
693
.. _langref_aliases :
685
694
686
695
Aliases
You can’t perform that action at this time.
0 commit comments