|
From:
<and...@gm...> - 2007-04-19 18:18:27
|
Is Valgrind capable of identifying conditionals during execution?
For instance if we have the binary corresponding to the following source code:
int main(){
int x = 0;
if ( false )
x = 2;
}
can Valgrind correctly identify the 'if ( false )' statement as a
conditional during execution?
Thanks
Andreas
|