blob: 79905004e0e6793f00fe85417271b052c3043719 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stdio.h>
int main(int argc, char *argv[])
{
puts("hello, world");
return 0;
}
/*
* check-name: 'hello, world' code generation
* check-command: ./sparsec -c $file -o tmp.o
*/
|