~ubuntu-branches/debian/sid/frama-c/sid

« back to all changes in this revision

Viewing changes to tests/jessie/fs249.c

  • Committer: Bazaar Package Importer
  • Author(s): Mehdi Dogguy
  • Date: 2009-06-03 08:19:25 UTC
  • Revision ID: james.westby@ubuntu.com-20090603081925-kihvxvt0wy3zc4ar
Tags: upstream-20081201.dfsg
ImportĀ upstreamĀ versionĀ 20081201.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
int x,*p,t[10];
 
2
 
 
3
void CEA_F(int);
 
4
 
 
5
void main(void)
 
6
{
 
7
  volatile int y=0;
 
8
  t[1]=y;
 
9
  CEA_F(t[1]-y);
 
10
  t[0]=0;
 
11
  CEA_F(t[1]-y);
 
12
}
 
13
 
 
14
/* 
 
15
Local Variables:
 
16
compile-command: "LC_ALL=C make fs249"
 
17
End:
 
18
*/