aboutsummaryrefslogtreecommitdiff
path: root/src/ssa.c
blob: a9d6e6c9f4f1feaaa9fd7d3ae8019c1f69aedd91 (plain) (blame)
1
2
3
4
5
6
7
8
#include <qbt/ssa.h>

void ssa(struct fn *f)
{
	/* do a depth-first traversal of blocks, mark locations within as either
	 * generated (i.e. we assign something to the register) or required
	 * (i.e. it must be taken as a block parameter) */
}