зеркало из https://github.com/mozilla/gecko-dev.git
Very simple test progam I am using to debug post_compile
This commit is contained in:
Родитель
e01621a34b
Коммит
9bbef7122f
|
@ -0,0 +1,17 @@
|
|||
static short gLook = 0;
|
||||
|
||||
static int add( int a, int b)
|
||||
{
|
||||
return a + b;
|
||||
}
|
||||
|
||||
long main( void )
|
||||
{
|
||||
long retVal = 0;
|
||||
for (int i=0; i<100; i++)
|
||||
{
|
||||
retVal = add( retVal, i) + gLook;
|
||||
}
|
||||
|
||||
return retVal;
|
||||
}
|
Загрузка…
Ссылка в новой задаче