[Prev][Next][Index]
missing BASIC_BLOCK
- Date: Wed, 30 Aug 1995 13:03:33 +0800
- From: mei@compbio.caltech.edu (Mei-Hui Su)
- To: sage-bugs@extreme.indiana.edu
- Subject: missing BASIC_BLOCK
- Sender: owner-sage-bugs@extreme.indiana.edu
Hi,
I am not sure when the first set of {} got lost..
My program,
int foo()
{
{
int a;
int b;
a=b;
}
{ int z; }
int c;
return 1;
}
pC++2dep worked on it to produce the .dep file.
Sage munched it, and the unparseoutput() gives it
back as,
int foo(){
int a;
int b;
a = b;
{
int z;
}
int c;
return 1;
}
mei