shithub: scc

ref: 7ee42919b3387df47b563fe9fe792ef0f7724365
dir: /cc1/tests/test001.c/

View raw version
/*
name: TEST001
description: Basic hello world test
output:
F3	I	P	E
X4	F3	printf
F5	I
G6	F5	main
{
\
	X4	"68656C6C6F20776F726C640A	'P	pP	cI
	r	#I0
}
*/

#include <stdio.h>

int
main(void)
{
	printf("hello world\n");
	return 0;
}