Skip to content

Instantly share code, notes, and snippets.

@simark
Created May 26, 2016 13:08
Show Gist options
  • Save simark/3d2644c96bf4dce4ef191e3a233c3182 to your computer and use it in GitHub Desktop.
Save simark/3d2644c96bf4dce4ef191e3a233c3182 to your computer and use it in GitHub Desktop.
gdb.base/return.exp reproduction
double
func3 ()
{
return -5.0;
}
double tmp3;
int main ()
{
tmp3 = func3 ();
return 0;
}
file return
b func3
r
return 2
n
print tmp3
quit tmp3 != 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment