Displaying 2 results from an estimated 2 matches for "4535a568".
2014 Aug 14
2
[LLVMdev] Functions with unnamed parameters in LLVM IR
...s good
enough to commit?
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Add-note-to-LangRef-about-how-function-arguments-can.patch
Type: text/x-patch
Size: 1348 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140814/4535a568/attachment.bin>
2014 Aug 13
2
[LLVMdev] Functions with unnamed parameters in LLVM IR
Hi,
Recently I came across some IR produced by a frontend that had unnamed
function arguments. For example something like this.
```
define i32 @foo(i32, i32, i32) #0 {
%x = add i32 %1, %2
ret i32 %x
}
```
I had never seen this before, so I took a look at the LLVM language
reference manual and the section on functions [1] doesn't say anything
about what "argument list" can be