search for: actual2

Displaying 3 results from an estimated 3 matches for "actual2".

Did you mean: actual
2020 Nov 19
2
Understanding CallInst::Create
Hello; I am working on porting a tool written for LLVM3.5 to LLVM10. There used to be a call instruction with the signature static CallInst * Create (Value *F, Value *Actual, const Twine &NameStr="", Instruction *InsertBefore=0) Can anyone please explain what it supposed to do? What was F and Actual? Thank you so much. -- Dr. Arnamoy Bhattacharyya R&D Compiler Engineer
2020 Nov 19
0
Understanding CallInst::Create
...e *Actual, const Twine > &NameStr="", Instruction *InsertBefore=0) > > Can anyone please explain what it supposed to do? What was F and Actual? I can only find anything like that in revision well before even 3.5. There used to be a version with "Actual1" and "Actual2" as well so I think it's probably just the (lone) function argument to pass. As in, "I'm creating a call instruction for a function with some prototype, and here's the actual argument I want passed". Cheers. Tim.
2020 Nov 19
1
Understanding CallInst::Create
...gt; &NameStr="", Instruction *InsertBefore=0) > > > > Can anyone please explain what it supposed to do? What was F and Actual? > > I can only find anything like that in revision well before even 3.5. > There used to be a version with "Actual1" and "Actual2" as well so I > think it's probably just the (lone) function argument to pass. As in, > "I'm creating a call instruction for a function with some prototype, > and here's the actual argument I want passed". > > Cheers. > > Tim. -- Dr. Arnamoy Bhatt...