<div dir="ltr"><div>Thanks so much for your quick reply.</div><div><br></div><div>I have been using hasBody(), isThisDeclarationADefinition(), etc... to determine if the Decl* i'm looking at is actually a definition -- those are useful. I was merely testing things with the redecl chain just to see if I could get the definition that way even if getDirectCallee() returned the function prototype. </div>

<div><br></div>How would I determine if clang has parsed the definition? Sorry, I'm a bit of a beginner here. I thought that Clang first parsed the source file, built an AST, and then allowed you to Visit each type of AST node. All I know is, at that point, Clang would not yet have <i>visited</i> the definition of foo(), but I assume it would have parsed it...? <div>

<br></div><div>Is it wrong to try to access or jump to a later function definition before visiting it first?<br><div><br></div><div>~Kevin</div><div><br></div></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">

On Tue, Jul 16, 2013 at 5:55 PM, Eli Friedman <span dir="ltr"><<a href="mailto:eli.friedman@gmail.com" target="_blank">eli.friedman@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div class="im">On Tue, Jul 16, 2013 at 3:27 PM, Kevin Boos <<a href="mailto:kevinaboos@gmail.com">kevinaboos@gmail.com</a>> wrote:<br>
> Hello,<br>
><br>
> I have a piece of C code like so:<br>
><br>
> ==========================================<br>
> void foo(); // just a declaration (sometimes in a header file instead)<br>
><br>
> void bar() {<br>
>     // definition here<br>
> }<br>
><br>
> int main() {<br>
>     bar();  // this one is fine<br>
>     foo();  // this one doesn't work<br>
> }<br>
><br>
> void foo() {<br>
>     // definition here<br>
> }<br>
> ============================================<br>
><br>
> I'm using VisitStmt and looking at the CallExprs in main(). For the "bar()"<br>
> function above, I can get the FunctionDecl* using<br>
> CallExpr::getDirectCallee(). However, that doesn't work for the "foo()"<br>
> function -- calling getDirectCallee() gives me the function prototype, not<br>
> the definition of "foo()"...<br>
><br>
> So I tried using the Redeclarable class's "redecl_iterator" to dump each<br>
> redeclaration starting from  getDirectCallee()->redecls_begin. However, it<br>
> only iterates once for the function prototype and doesn't include the actual<br>
> definition of "foo()."<br>
<br>
</div>Note that you probably just want to use FunctionDecl::hasBody instead<br>
of iterating over the redeclaration chain.<br>
<div class="im"><br>
> How can I get the real definition of foo() at the bottom of the code above?<br>
> I know it's probably something easy, but I just can't seem to get there.<br>
<br>
</div>Are your sure clang has actually parsed the definition at the point<br>
where you are dumping it?<br>
<span class="HOEnZb"><font color="#888888"><br>
-Eli<br>
</font></span></blockquote></div><br></div>