Skip to content

SageBuilder::buildFunctionCallStmt

buildFunctionCallStmt overloads

Synopses

Declared in <SageIII/sageInterface/sageBuilder.h>

Build a function call statement using function expression and argument list only, like (*funcPtr)(args);

[[visibility]]
SgExprStatement*
buildFunctionCallStmt(
    SgExpression* function,
    SgExprListExp* parameters = NULL);

Build a regular function call statement

[[visibility]]
SgExprStatement*
buildFunctionCallStmt(
    SgName const& name,
    SgType* return_type,
    SgExprListExp* parameters = NULL,
    SgScopeStatement* scope = NULL);

Created with MrDocs