comparison paper/sources/fastcall-example.c @ 10:3d9addf62d0b

organized repository.
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Tue, 16 Feb 2010 14:35:36 +0900
parents
children
comparison
equal deleted inserted replaced
9:ae0a3666f7f9 10:3d9addf62d0b
1 int fastfunc() __attribute__((fastcall));
2
3 int fastfunc(int a, int b) {
4 /* do something. */
5 }
6
7 void normalfunc() {
8 fastfunc(20, 30);
9 }