Skip to content

Instantly share code, notes, and snippets.

@orontee
Created September 25, 2013 09:14
Show Gist options
  • Save orontee/6697060 to your computer and use it in GitHub Desktop.
Save orontee/6697060 to your computer and use it in GitHub Desktop.
int
with_signed (int arg)
{
return arg/64;
}
unsigned
with_unsigned (unsigned arg)
{
return arg/64;
}
int
main()
{
/* Run gdb a.out and disassemble both functions */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment