[Prev][Next][Index]
Missing line in patch
- To: Darryl Ivan Brown <darrylb@skinner.cs.uoregon.edu>
- Subject: Missing line in patch
- Cc: sage-bugs@cica.indiana.edu
- Date: Thu, 14 Jul 1994 08:47:36 -0500
- From: Andrew Mauer <mauer@mcs.anl.gov>
Sorry... that patch I sent was missing a line (the prototype of a
function). Here is the complete one.
/* Prototype copied from below so we can use it in SgExpression::symbol(). */
SgValueExp * isSgValueExp(SgExpression *pt);
inline SgSymbol *SgExpression::symbol()
{
/* Value expressions do not have valid symbol pointers */
if ( isSgValueExp (this) )
return 0;
else
return SymbMapping(NODE_SYMB(thellnd));
}