Skip to content

Instantly share code, notes, and snippets.

@edygert
Created April 22, 2024 04:02
Show Gist options
  • Save edygert/eb4ed782de2c1c745c9e739380a986d2 to your computer and use it in GitHub Desktop.
Save edygert/eb4ed782de2c1c745c9e739380a986d2 to your computer and use it in GitHub Desktop.
sample code for godbolt
int __fastcall addemup(int a, int b, int c) {
int d;
d = a + b + c;
return d;
}
void caller() {
int x = addemup(1, 2, 3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment