This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug documentation/10927] New: do-while statement unimplemented, but documented


doc/langref.tex:

\subsection{do}
\index{do}
The \texttt{do} statement has the same syntax and semantics as in C.

\begin{vindent}
\begin{verbatim}
do STMT while (EXP)
\end{verbatim}
\end{vindent}

But parse.cxx (parser::parse_statement):
  // XXX: "do/while" statement?

$ stap -v -e 'probe begin { do { log("nothing"); } while (0); }'
WARNING: read-only local variable 'do' : identifier 'do' at <input>:1:15
 source: probe begin { do { log("nothing"); } while (0); }
                       ^
WARNING: eliding unused variable 'do': identifier 'do' at :1:15
 source: probe begin { do { log("nothing"); } while (0); }

-- 
           Summary: do-while statement unimplemented, but documented
           Product: systemtap
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: documentation
        AssignedTo: systemtap at sources dot redhat dot com
        ReportedBy: mjw at redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=10927

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]