1
edit
Changes
no edit summary
== Possible Bug ==
<pre>
/* Compute a default value for variable VAR and store it in the
</pre>
<pre>
/* blah.h */
class Blah {
public: virtual int blah() __attribute__((nothrow));
};
/* blah.cpp */
#include "blah.h"
int Blah::blah() {
return 0;
}
int main()
{
Blah b; Blah* p = &b; int x; x = p->blah(); return 0;
}
</pre>
Compiling sample program with gcc trunk build containing above debugging statements:
<pre>
Call flags from tree-optimize.c: 64
Call flags from tree-ssa-ccp: 0