search for: 7c0554e1

Displaying 3 results from an estimated 3 matches for "7c0554e1".

Did you mean: 7c05548e
2010 Jul 22
0
[LLVMdev] Question about function arguments
Hi Hemanth, > I was wondering how I could determine the values of function arguments > using the iterators defined in Function.cpp. are you sure you aren't confusing values and names? In something like this int foo(int a, int b) there are names "a" and "b". To make it easier for humans to read LLVM IR, most front-ends will use the same names for the function
2010 Jul 22
1
[LLVMdev] Question about function arguments
...ling list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > -- Cheers, Hemanth -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100722/7c0554e1/attachment.html>
2010 Jul 22
2
[LLVMdev] Question about function arguments
Hello All, I was wondering how I could determine the values of function arguments using the iterators defined in Function.cpp. Any advice or hints would be great..! Basically, what I am trying out is: Function foo has the following function body: int foo(int a, int b) { } Function * f = module->getFunction("foo"); Function::arg_iterator start = f->arg_begin();