Hi,<div><br></div><div>I am doing source analysis using clang and I need to identify certain function calls. Some of these calls are instantiated through macros.</div><div><br></div><div>Eg:</div><div><br></div><div><1> #define MALLOC(x) malloc((x))</div>

<div><2></div><div><3>int main() {</div><div><4>     char *p;</div><div><5></div><div><6>     p = MALLOC(sizeof(char) *</div><div><7>                                  MAX_SIZE);</div><div>

<8> }</div><div><br></div><div>In the above dummy example, I want to get the end location of malloc invocation. When MALLOC is expanded by the preprocessor, the two line invocation becomes single line and getEndLoc() on the CallExpr object gives line number 6. But I want to get the actual end location of the macro invocation in source file. In the example, it is line 7. Can anyone point me in the right direction to get this from AST?</div>

<div><br></div><div>Thanks,</div><div>Aniruddh</div><div><br></div>