The IRBuilder.CreateCall is a function in C++ that allows you to create a call instruction in LLVM intermediate representation (IR). This function takes in the function to be called and the arguments to be passed to the function and returns a Value representing the result of the call. It simplifies the process of creating call instructions in the IR by providing a convenient way to specify the function and arguments. The created call instruction can then be added to the basic block of a function or any other desired location in the LLVM IR.
C++ (Cpp) IRBuilder::CreateCall - 26 examples found. These are the top rated real world C++ (Cpp) examples of IRBuilder::CreateCall extracted from open source projects. You can rate examples to help us improve the quality of examples.