dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnet/cscc/csharp cs_decls.tc,1.29,1.30 cs_st


From: Gopal.V <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet/cscc/csharp cs_decls.tc,1.29,1.30 cs_stmt.tc,1.31,1.32
Date: Sat, 28 Dec 2002 12:17:04 -0500

Update of /cvsroot/dotgnu-pnet/pnet/cscc/csharp
In directory subversions:/tmp/cvs-serv2834/cscc/csharp

Modified Files:
        cs_decls.tc cs_stmt.tc 
Log Message:
Add an "info" parameter to ILNode_EndsInReturnImpl


Index: cs_decls.tc
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/cscc/csharp/cs_decls.tc,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** cs_decls.tc 28 Nov 2002 00:09:22 -0000      1.29
--- cs_decls.tc 28 Dec 2002 17:17:02 -0000      1.30
***************
*** 972,976 ****
                   ILMethod_IsIL(node->methodInfo))
                {
!                       if(!ILNodeEndsInFlowChange(node->body) && 
!CSMetadataOnly)
                        {
                                CCErrorOnLine(yygetfilename(node), 
yygetlinenum(node),
--- 972,976 ----
                   ILMethod_IsIL(node->methodInfo))
                {
!                       if(!ILNodeEndsInFlowChange(node->body,info) && 
!CSMetadataOnly)
                        {
                                CCErrorOnLine(yygetfilename(node), 
yygetlinenum(node),

Index: cs_stmt.tc
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/cscc/csharp/cs_stmt.tc,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -r1.31 -r1.32
*** cs_stmt.tc  10 Dec 2002 23:08:59 -0000      1.31
--- cs_stmt.tc  28 Dec 2002 17:17:02 -0000      1.32
***************
*** 749,753 ****
  
                /* The body must end in some kind of return or jump statement */
!               if(!ILNodeEndsInFlowChange(((ILNode_SwitchSection 
*)section)->stmt))
                {
                        CCErrorOnLine(yygetfilename(section), 
yygetlinenum(section),
--- 749,754 ----
  
                /* The body must end in some kind of return or jump statement */
!               if(!ILNodeEndsInFlowChange(((ILNode_SwitchSection 
*)section)->stmt
!                                                                       ,info))
                {
                        CCErrorOnLine(yygetfilename(section), 
yygetlinenum(section),
***************
*** 1595,1599 ****
  ILNode_EndsInReturnImpl(ILNode_Using)
  {
!       return ILNode_EndsInReturnImpl(node->stmt);
  }
  
--- 1596,1600 ----
  ILNode_EndsInReturnImpl(ILNode_Using)
  {
!       return ILNode_EndsInReturnImpl(node->stmt,info);
  }
  
***************
*** 1630,1634 ****
  ILNode_EndsInReturnImpl(ILNode_Unsafe)
  {
!       return ILNode_EndsInReturnImpl(node->stmt);
  }
  
--- 1631,1635 ----
  ILNode_EndsInReturnImpl(ILNode_Unsafe)
  {
!       return ILNode_EndsInReturnImpl(node->stmt,info);
  }
  
***************
*** 1736,1740 ****
  ILNode_EndsInReturnImpl(ILNode_Fixed)
  {
!       return ILNode_EndsInReturnImpl(node->stmt);
  }
  
--- 1737,1741 ----
  ILNode_EndsInReturnImpl(ILNode_Fixed)
  {
!       return ILNode_EndsInReturnImpl(node->stmt,info);
  }
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]