Skip to main content
summaryrefslogtreecommitdiffstats
blob: a1700eb0b3612fff0985a5bf11881b5b3dcb91cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//#include <stdio.h>
/** function that shows a short edge in a CFG */
void edge(int a) {
	int x,y;
	if(a>0)
		x=0;  // the then case
	else 
		x=1;  // the else case
	// use resultant value of x
	/* partLine comment */ y=x; 
}
/** the ever-present foo function */
int foo(int bar){
  int z = bar;
  return z;
}

Back to the top