ADT
arm-eh
ast-experimental
cleanup-dtors
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since 9a0cd9c was 87701b6, checked in by Thierry Delisle <tdelisle@…>, 6 years ago |
Tentative fix for increment/decrement and implented a few more visits
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[2bb4a01] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
| 3 | //
|
---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
---|
| 5 | // file "LICENCE" distributed with Cforall.
|
---|
| 6 | //
|
---|
| 7 | // Stmt.cpp --
|
---|
| 8 | //
|
---|
| 9 | // Author : Aaron B. Moss
|
---|
[1e97287] | 10 | // Created On : Wed May 8 13:00:00 2019
|
---|
| 11 | // Last Modified By : Andrew Beach
|
---|
| 12 | // Last Modified On : Wed May 15 15:53:00 2019
|
---|
| 13 | // Update Count : 2
|
---|
[2bb4a01] | 14 | //
|
---|
| 15 |
|
---|
| 16 | #include "Stmt.hpp"
|
---|
| 17 |
|
---|
| 18 | #include "DeclReplacer.hpp"
|
---|
| 19 |
|
---|
[1e97287] | 20 | namespace ast {
|
---|
| 21 |
|
---|
[2bb4a01] | 22 | // --- CompoundStmt
|
---|
[1e97287] | 23 | CompoundStmt::CompoundStmt( const CompoundStmt& o ) : Stmt(o), kids(o.kids) {
|
---|
| 24 | assert(!"implemented");
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | // --- BranchStmt
|
---|
[87701b6] | 28 | BranchStmt::BranchStmt( const CodeLocation& loc, Kind kind, Label target, std::vector<Label>&& labels )
|
---|
[1e97287] | 29 | : Stmt(loc, std::move(labels)), originalTarget(target), target(target), kind(kind) {
|
---|
| 30 | // Make sure a syntax error hasn't slipped through.
|
---|
| 31 | assert( Goto != kind || !target.empty() );
|
---|
| 32 | }
|
---|
| 33 |
|
---|
| 34 | const char * BranchStmt::kindNames[] = {
|
---|
| 35 | "Goto", "Break", "Continue", "FallThrough", "FallThroughDefault"
|
---|
[87701b6] | 36 | };
|
---|
[2bb4a01] | 37 |
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | // Local Variables: //
|
---|
| 41 | // tab-width: 4 //
|
---|
| 42 | // mode: c++ //
|
---|
| 43 | // compile-command: "make install" //
|
---|
| 44 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.