mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
24 lines
587 B
C
24 lines
587 B
C
|
/*
|
||
|
* Copyright 2016 The Emscripten Authors. All rights reserved.
|
||
|
* Emscripten is available under two separate licenses, the MIT license and the
|
||
|
* University of Illinois/NCSA Open Source License. Both these licenses can be
|
||
|
* found in the LICENSE file.
|
||
|
*/
|
||
|
|
||
|
// We should not blow up the stack with numerous allocas
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int func(int i) {
|
||
|
char *pc = (char *)alloca(100);
|
||
|
*pc = i;
|
||
|
(*pc)++;
|
||
|
return (*pc) % 10;
|
||
|
}
|
||
|
int main() {
|
||
|
int total = 0;
|
||
|
for (int i = 0; i < 1024 * 1024; i++) total += func(i);
|
||
|
printf("ok:%d*\n", total);
|
||
|
return 0;
|
||
|
}
|