public class SequenceStmt extends Stmt
SequenceStmt combines together two smaller statements.
To execute the SequenceStmt, the two constituent statements
are executed in sequence.| Constructor and Description |
|---|
SequenceStmt(Stmt s1,
Stmt s2)
Constructs a
SequenceStmt from two smaller statements. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toLLVM()
Generate the LLVM code that should be executed to execute this statement.
|