Stmt package:language-c

Stmt is an alias for CStat (Syntax)
Typecheck a statement, given a statement context. The type of a statement is usually void, but expression statements and blocks can sometimes have other types.
GNU Assembler statement
CAssemblyStatement type-qual? asm-expr out-ops in-ops clobbers _
is an inline assembler statement. The only type-qualifier (if any) allowed is volatile. asm-expr is the actual assembler epxression (a string), out-ops and in-ops are the input and output operands of the statement. clobbers is a list of registers which are clobbered when executing the assembler statement
A statement