source: src/SynTree/Statement.cc @ b0dfbc4

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since b0dfbc4 was b0dfbc4, checked in by Rob Schluntz <rschlunt@…>, 7 years ago

Clean up BranchStmt? code

  • Property mode set to 100644
File size: 16.5 KB
RevLine 
[0dd3a2f]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//
[3be261a]7// Statement.cc --
[0dd3a2f]8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
[6d49ea3]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Aug 17 16:17:20 2017
13// Update Count     : 67
[0dd3a2f]14//
15
[ea6332d]16#include "SynTree/Statement.h"
[51b7345]17
[ea6332d]18#include <stddef.h>                // for NULL
19#include <cassert>                 // for assert, assertf
20#include <iostream>                // for operator<<, basic_ostream, endl
21#include <list>                    // for list, list<>::const_iterator, _Lis...
22#include <string>                  // for operator<<, string, char_traits
23
24#include "Common/SemanticError.h"  // for SemanticError
25#include "Common/utility.h"        // for maybeClone, cloneAll, deleteAll
26#include "Declaration.h"           // for Declaration
27#include "Expression.h"            // for Expression, ConstantExpr
28#include "Statement.h"             // for Statement, ForStmt, AsmStmt, Catch...
29#include "SynTree/Label.h"         // for Label, operator<<
[51b7345]30
31using std::string;
32using std::endl;
33
[6d49ea3]34Statement::Statement( std::list<Label> labels ) : labels( labels ) {}
[51b7345]35
[b3c36f4]36void Statement::print( __attribute__((unused)) std::ostream &, __attribute__((unused)) int indent ) const {}
[51b7345]37
38Statement::~Statement() {}
39
[6d49ea3]40ExprStmt::ExprStmt( std::list<Label> labels, Expression *expr ) : Statement( labels ), expr( expr ) {}
[51b7345]41
[3be261a]42ExprStmt::ExprStmt( const ExprStmt &other ) : Statement( other ), expr( maybeClone( other.expr ) ) {}
43
44ExprStmt::~ExprStmt() {
45        delete expr;
46}
[51b7345]47
[de62360d]48void ExprStmt::print( std::ostream &os, int indent ) const {
[bb8ea30]49        os << "Expression Statement:" << endl << std::string( indent + 2, ' ' );
[0dd3a2f]50        expr->print( os, indent + 2 );
[3be261a]51}
[51b7345]52
[7f5566b]53
54AsmStmt::AsmStmt( std::list<Label> labels, bool voltile, ConstantExpr *instruction, std::list<Expression *> output, std::list<Expression *> input, std::list<ConstantExpr *> clobber, std::list<Label> gotolabels ) : Statement( labels ), voltile( voltile ), instruction( instruction ), output( output ), input( input ), clobber( clobber ), gotolabels( gotolabels ) {}
55
[3be261a]56AsmStmt::AsmStmt( const AsmStmt & other ) : Statement( other ), voltile( other.voltile ), instruction( maybeClone( other.instruction ) ), gotolabels( other.gotolabels ) {
57  cloneAll( other.output, output );
58  cloneAll( other.input, input );
59  cloneAll( other.clobber, clobber );
60}
61
[7f5566b]62AsmStmt::~AsmStmt() {
63        delete instruction;
64        deleteAll( output );
65        deleteAll( input );
66        deleteAll( clobber );
67}
68
69void AsmStmt::print( std::ostream &os, int indent ) const {
70        os << "Assembler Statement:" << endl;
71        os << std::string( indent, ' ' ) << "instruction: " << endl << std::string( indent, ' ' );
72        instruction->print( os, indent + 2 );
73        if ( ! output.empty() ) {
74                os << endl << std::string( indent, ' ' ) << "output: " << endl;
75                printAll( output, os, indent + 2 );
[3be261a]76        } // if
[7f5566b]77        if ( ! input.empty() ) {
78                os << std::string( indent, ' ' ) << "input: " << endl << std::string( indent, ' ' );
79                printAll( input, os, indent + 2 );
80        } // if
81        if ( ! clobber.empty() ) {
82                os << std::string( indent, ' ' ) << "clobber: " << endl;
83                printAll( clobber, os, indent + 2 );
84        } // if
[3be261a]85}
[7f5566b]86
87
[51b7345]88const char *BranchStmt::brType[] = { "Goto", "Break", "Continue" };
89
[6d49ea3]90BranchStmt::BranchStmt( std::list<Label> labels, Label target, Type type ) throw ( SemanticError ) :
[b0dfbc4]91        Statement( labels ), originalTarget( target ), target( target ), computedTarget( nullptr ), type( type ) {
[0dd3a2f]92        //actually this is a syntactic error signaled by the parser
[b0dfbc4]93        if ( type == BranchStmt::Goto && target.empty() ) {
[0dd3a2f]94                throw SemanticError("goto without target");
[b0dfbc4]95        }
[51b7345]96}
97
[6d49ea3]98BranchStmt::BranchStmt( std::list<Label> labels, Expression *computedTarget, Type type ) throw ( SemanticError ) :
99        Statement( labels ), computedTarget( computedTarget ), type( type ) {
[b0dfbc4]100        if ( type != BranchStmt::Goto || computedTarget == nullptr ) {
[0dd3a2f]101                throw SemanticError("Computed target not valid in branch statement");
[b0dfbc4]102        }
[51b7345]103}
104
[de62360d]105void BranchStmt::print( std::ostream &os, int indent ) const {
[44b5ca0]106        os << string( indent, ' ' ) << "Branch (" << brType[type] << ")" << endl ;
[b0dfbc4]107        if ( target != "" ) os << string( indent+2, ' ' ) << "with target: " << target << endl;
108        if ( originalTarget != "" ) os << string( indent+2, ' ' ) << "with original target: " << originalTarget << endl;
109        if ( computedTarget != nullptr ) os << string( indent+2, ' ' ) << "with computed target: " << computedTarget << endl;
[51b7345]110}
111
[6d49ea3]112ReturnStmt::ReturnStmt( std::list<Label> labels, Expression *expr ) : Statement( labels ), expr( expr ) {}
[51b7345]113
[daf1af8]114ReturnStmt::ReturnStmt( const ReturnStmt & other ) : Statement( other ), expr( maybeClone( other.expr ) ) {}
[3be261a]115
[51b7345]116ReturnStmt::~ReturnStmt() {
[0dd3a2f]117        delete expr;
[51b7345]118}
119
[de62360d]120void ReturnStmt::print( std::ostream &os, int indent ) const {
[daf1af8]121        os <<  "Return Statement, returning: ";
[89231bc]122        if ( expr != 0 ) {
123                os << endl << string( indent+2, ' ' );
124                expr->print( os, indent + 2 );
125        }
[0dd3a2f]126        os << endl;
[51b7345]127}
128
[6d49ea3]129IfStmt::IfStmt( std::list<Label> labels, Expression *condition, Statement *thenPart, Statement *elsePart, std::list<Statement *> initialization ):
130        Statement( labels ), condition( condition ), thenPart( thenPart ), elsePart( elsePart ), initialization( initialization ) {}
[51b7345]131
[3be261a]132IfStmt::IfStmt( const IfStmt & other ) :
[6d49ea3]133        Statement( other ), condition( maybeClone( other.condition ) ), thenPart( maybeClone( other.thenPart ) ), elsePart( maybeClone( other.elsePart ) ) {
134        cloneAll( other.initialization, initialization );
135}
[3be261a]136
[ac71a86]137IfStmt::~IfStmt() {
[6d49ea3]138        deleteAll( initialization );
[ac71a86]139        delete condition;
140        delete thenPart;
141        delete elsePart;
142}
[51b7345]143
[de62360d]144void IfStmt::print( std::ostream &os, int indent ) const {
[89231bc]145        os << "If on condition: " << endl ;
[60089f4]146        os << string( indent+4, ' ' );
[0dd3a2f]147        condition->print( os, indent + 4 );
[51b7345]148
[6d49ea3]149        if ( !initialization.empty() ) {
150                os << string( indent + 2, ' ' ) << "initialization: \n";
151                for ( std::list<Statement *>::const_iterator it = initialization.begin(); it != initialization.end(); ++it ) {
152                        os << string( indent + 4, ' ' );
153                        (*it)->print( os, indent + 4 );
154                }
155                os << endl;
156        }
157
[60089f4]158        os << string( indent+2, ' ' ) << "... then: " << endl;
[51b7345]159
[60089f4]160        os << string( indent+4, ' ' );
[0dd3a2f]161        thenPart->print( os, indent + 4 );
[51b7345]162
[0dd3a2f]163        if ( elsePart != 0 ) {
[60089f4]164                os << string( indent+2, ' ' ) << "... else: " << endl;
165                os << string( indent+4, ' ' );
[0dd3a2f]166                elsePart->print( os, indent + 4 );
167        } // if
[51b7345]168}
169
[6d49ea3]170SwitchStmt::SwitchStmt( std::list<Label> labels, Expression * condition, std::list<Statement *> &statements ):
171        Statement( labels ), condition( condition ), statements( statements ) {
[0dd3a2f]172}
[51b7345]173
[3be261a]174SwitchStmt::SwitchStmt( const SwitchStmt & other ):
175        Statement( other ), condition( maybeClone( other.condition ) ) {
[8688ce1]176        cloneAll( other.statements, statements );
[3be261a]177}
178
[51b7345]179SwitchStmt::~SwitchStmt() {
[0dd3a2f]180        delete condition;
[8688ce1]181        // destroy statements
[2037f82]182        deleteAll( statements );
[51b7345]183}
184
[de62360d]185void SwitchStmt::print( std::ostream &os, int indent ) const {
[89231bc]186        os << "Switch on condition: ";
[0dd3a2f]187        condition->print( os );
188        os << endl;
[51b7345]189
[8688ce1]190        // statements
[de62360d]191        std::list<Statement *>::const_iterator i;
[8688ce1]192        for ( i = statements.begin(); i != statements.end(); i++)
[de62360d]193                (*i)->print( os, indent + 4 );
[51b7345]194
[8688ce1]195        //for_each( statements.begin(), statements.end(), mem_fun( bind1st(&Statement::print ), os ));
[51b7345]196}
197
[6d49ea3]198CaseStmt::CaseStmt( std::list<Label> labels, Expression *condition, std::list<Statement *> &statements, bool deflt ) throw ( SemanticError ) :
199        Statement( labels ), condition( condition ), stmts( statements ), _isDefault( deflt ) {
[0dd3a2f]200        if ( isDefault() && condition != 0 )
201                throw SemanticError("default with conditions");
[51b7345]202}
203
[3be261a]204CaseStmt::CaseStmt( const CaseStmt & other ) :
205        Statement( other ), condition( maybeClone(other.condition ) ), _isDefault( other._isDefault ) {
206        cloneAll( other.stmts, stmts );
207}
208
[51b7345]209CaseStmt::~CaseStmt() {
[0dd3a2f]210        delete condition;
[2037f82]211        deleteAll( stmts );
[51b7345]212}
213
[8688ce1]214CaseStmt * CaseStmt::makeDefault( std::list<Label> labels, std::list<Statement *> stmts ) {
215        return new CaseStmt( labels, 0, stmts, true );
[b2152e7a]216}
217
[de62360d]218void CaseStmt::print( std::ostream &os, int indent ) const {
[44b5ca0]219        os << string( indent, ' ' );
[51b7345]220
[de62360d]221        if ( isDefault() )
[0dd3a2f]222                os << "Default ";
223        else {
224                os << "Case ";
225                condition->print( os );
226        } // if
[51b7345]227
[0dd3a2f]228        os << endl;
[51b7345]229
[de62360d]230        std::list<Statement *>::const_iterator i;
[0dd3a2f]231        for ( i = stmts.begin(); i != stmts.end(); i++)
232                (*i )->print( os, indent + 4 );
[51b7345]233}
234
[6d49ea3]235WhileStmt::WhileStmt( std::list<Label> labels, Expression *condition, Statement *body, bool isDoWhile ):
236        Statement( labels ), condition( condition), body( body), isDoWhile( isDoWhile) {
[0dd3a2f]237}
[51b7345]238
[3be261a]239WhileStmt::WhileStmt( const WhileStmt & other ):
240        Statement( other ), condition( maybeClone( other.condition ) ), body( maybeClone( other.body ) ), isDoWhile( other.isDoWhile ) {
241}
242
[a08ba92]243WhileStmt::~WhileStmt() {
[0dd3a2f]244        delete body;
[2037f82]245        delete condition;
[51b7345]246}
247
[de62360d]248void WhileStmt::print( std::ostream &os, int indent ) const {
[89231bc]249        os << "While on condition: " << endl ;
[0dd3a2f]250        condition->print( os, indent + 4 );
[51b7345]251
[44b5ca0]252        os << string( indent, ' ' ) << ".... with body: " << endl;
[51b7345]253
[0dd3a2f]254        if ( body != 0 ) body->print( os, indent + 4 );
[51b7345]255}
256
[6d49ea3]257ForStmt::ForStmt( std::list<Label> labels, std::list<Statement *> initialization, Expression *condition, Expression *increment, Statement *body ):
258        Statement( labels ), initialization( initialization ), condition( condition ), increment( increment ), body( body ) {
[0dd3a2f]259}
[51b7345]260
[3be261a]261ForStmt::ForStmt( const ForStmt & other ):
262        Statement( other ), condition( maybeClone( other.condition ) ), increment( maybeClone( other.increment ) ), body( maybeClone( other.body ) ) {
263                cloneAll( other.initialization, initialization );
264
265}
266
[51b7345]267ForStmt::~ForStmt() {
[145f1fc]268        deleteAll( initialization );
[0dd3a2f]269        delete condition;
270        delete increment;
271        delete body;
[51b7345]272}
273
[de62360d]274void ForStmt::print( std::ostream &os, int indent ) const {
[89231bc]275        os << "Labels: {";
[de62360d]276        for ( std::list<Label>::const_iterator it = get_labels().begin(); it != get_labels().end(); ++it) {
[be5aa1b]277                os << *it << ",";
278        }
279        os << "}" << endl;
280
[44b5ca0]281        os << string( indent, ' ' ) << "For Statement" << endl ;
[51b7345]282
[3be261a]283        os << string( indent + 2, ' ' ) << "initialization: \n";
[145f1fc]284        for ( std::list<Statement *>::const_iterator it = initialization.begin(); it != initialization.end(); ++it ) {
[bb8ea30]285                os << string( indent + 4, ' ' );
[145f1fc]286                (*it)->print( os, indent + 4 );
287        }
[51b7345]288
[3be261a]289        os << "\n" << string( indent + 2, ' ' ) << "condition: \n";
[bb8ea30]290        if ( condition != 0 ) {
291                os << string( indent + 4, ' ' );
[0dd3a2f]292                condition->print( os, indent + 4 );
[bb8ea30]293        }
[51b7345]294
[3be261a]295        os << "\n" << string( indent + 2, ' ' ) << "increment: \n";
[bb8ea30]296        if ( increment != 0 ) {
297                os << string( indent + 4, ' ' );
[0dd3a2f]298                increment->print( os, indent + 4 );
[bb8ea30]299        }
[51b7345]300
[3be261a]301        os << "\n" << string( indent + 2, ' ' ) << "statement block: \n";
[bb8ea30]302        if ( body != 0 ) {
303                os << string( indent + 4, ' ' );
[0dd3a2f]304                body->print( os, indent + 4 );
[bb8ea30]305        }
[51b7345]306
[0dd3a2f]307        os << endl;
[51b7345]308}
309
[daf1af8]310ThrowStmt::ThrowStmt( std::list<Label> labels, Kind kind, Expression * expr, Expression * target ) :
311                Statement( labels ), kind(kind), expr(expr), target(target)     {
312        assertf(Resume == kind || nullptr == target, "Non-local termination throw is not accepted." );
313}
314
315ThrowStmt::ThrowStmt( const ThrowStmt &other ) :
316        Statement ( other ), kind( other.kind ), expr( maybeClone( other.expr ) ), target( maybeClone( other.target ) ) {
317}
318
319ThrowStmt::~ThrowStmt() {
320        delete expr;
321        delete target;
322}
323
324void ThrowStmt::print( std::ostream &os, int indent) const {
325        if ( target ) {
326                os << "Non-Local ";
327        }
328        os << "Throw Statement, raising: ";
329        expr->print(os, indent + 4);
330        if ( target ) {
331                os << "At: ";
332                target->print(os, indent + 4);
333        }
334}
335
[6d49ea3]336TryStmt::TryStmt( std::list<Label> labels, CompoundStmt *tryBlock, std::list<CatchStmt *> &handlers, FinallyStmt *finallyBlock ) :
337        Statement( labels ), block( tryBlock ),  handlers( handlers ), finallyBlock( finallyBlock ) {
[0dd3a2f]338}
[51b7345]339
[3be261a]340TryStmt::TryStmt( const TryStmt &other ) : Statement( other ), block( maybeClone( other.block ) ), finallyBlock( maybeClone( other.finallyBlock ) ) {
341        cloneAll( other.handlers, handlers );
[51b7345]342}
343
[a08ba92]344TryStmt::~TryStmt() {
[0dd3a2f]345        delete block;
[2037f82]346        deleteAll( handlers );
347        delete finallyBlock;
[51b7345]348}
349
[de62360d]350void TryStmt::print( std::ostream &os, int indent ) const {
[89231bc]351        os << "Try Statement" << endl;
[406a6e6]352        os << string( indent + 2, ' ' ) << "with block:" << endl;
353        os << string( indent + 4, ' ' );
[0dd3a2f]354        block->print( os, indent + 4 );
355
356        // handlers
[406a6e6]357        os << string( indent + 2, ' ' ) << "and handlers:" << endl;
358        for ( std::list<CatchStmt *>::const_iterator i = handlers.begin(); i != handlers.end(); i++) {
359                os << string( indent + 4, ' ' );
[0dd3a2f]360                (*i )->print( os, indent + 4 );
[406a6e6]361        }
[0dd3a2f]362
363        // finally block
364        if ( finallyBlock != 0 ) {
[406a6e6]365                os << string( indent + 2, ' ' ) << "and finally:" << endl;
[0dd3a2f]366                finallyBlock->print( os, indent + 4 );
367        } // if
[51b7345]368}
369
[6d49ea3]370CatchStmt::CatchStmt( std::list<Label> labels, Kind kind, Declaration *decl, Expression *cond, Statement *body ) :
371        Statement( labels ), kind ( kind ), decl ( decl ), cond ( cond ), body( body ) {
[0dd3a2f]372}
[51b7345]373
[3be261a]374CatchStmt::CatchStmt( const CatchStmt & other ) :
[ca78437]375        Statement( other ), kind ( other.kind ), decl ( maybeClone( other.decl ) ), cond ( maybeClone( other.cond ) ), body( maybeClone( other.body ) ) {
[3be261a]376}
377
[a08ba92]378CatchStmt::~CatchStmt() {
[0dd3a2f]379        delete decl;
380        delete body;
[51b7345]381}
382
[de62360d]383void CatchStmt::print( std::ostream &os, int indent ) const {
[ca78437]384        os << "Catch " << ((Terminate == kind) ? "Terminate" : "Resume") << " Statement" << endl;
[0dd3a2f]385
[406a6e6]386        os << string( indent + 2, ' ' ) << "... catching: ";
[0dd3a2f]387        if ( decl ) {
388                decl->printShort( os, indent + 4 );
389                os << endl;
[ca78437]390        }
[0dd3a2f]391        else
[44b5ca0]392                os << string( indent + 4 , ' ' ) << ">>> Error:  this catch clause must have a declaration <<<" << endl;
[406a6e6]393
394        if ( cond ) {
395                os << string( indent + 2, ' ' ) << "with conditional:" << endl;
396                os << string( indent + 4, ' ' );
397                cond->print( os, indent + 4 );
398        }
399        else
400                os << string( indent + 2, ' ' ) << "with no conditional" << endl;
401
402        os << string( indent + 2, ' ' ) << "with block:" << endl;
403        os << string( indent + 4, ' ' );
404        body->print( os, indent + 4 );
[51b7345]405}
406
407
[6d49ea3]408FinallyStmt::FinallyStmt( std::list<Label> labels, CompoundStmt *block ) : Statement( labels ), block( block ) {
[0dd3a2f]409        assert( labels.empty() ); // finally statement cannot be labeled
[51b7345]410}
411
[3be261a]412FinallyStmt::FinallyStmt( const FinallyStmt & other ) : Statement( other ), block( maybeClone( other.block ) ) {
413}
414
[0dd3a2f]415FinallyStmt::~FinallyStmt() {
416        delete block;
[51b7345]417}
418
[de62360d]419void FinallyStmt::print( std::ostream &os, int indent ) const {
[f1b1e4c]420        os << "Finally Statement" << endl;
[406a6e6]421        os << string( indent + 2, ' ' ) << "with block:" << endl;
422        os << string( indent + 4, ' ' );
[0dd3a2f]423        block->print( os, indent + 4 );
[51b7345]424}
425
[135b431]426WaitForStmt::WaitForStmt( std::list<Label> labels ) : Statement( labels ) {
427        timeout.time      = nullptr;
428        timeout.statement = nullptr;
429        timeout.condition = nullptr;
430        orelse .statement = nullptr;
431        orelse .condition = nullptr;
432}
433
434WaitForStmt::WaitForStmt( const WaitForStmt & other ) : Statement( other ) {
435        clauses.reserve( other.clauses.size() );
436        for( auto & ocl : other.clauses ) {
437                clauses.emplace_back();
438                clauses.back().target.function = ocl.target.function->clone();
439                cloneAll( ocl.target.arguments, clauses.back().target.arguments );
440                clauses.back().statement = ocl.statement->clone();
441                clauses.back().condition = ocl.condition->clone();
442        }
443
444        timeout.time      = other.timeout.time     ->clone();
445        timeout.statement = other.timeout.statement->clone();
446        timeout.condition = other.timeout.condition->clone();
447        orelse .statement = other.orelse .statement->clone();
448        orelse .condition = other.orelse .condition->clone();
449}
450
451WaitForStmt::~WaitForStmt() {
452        for( auto & clause : clauses ) {
453                delete clause.target.function;
454                deleteAll( clause.target.arguments );
455                delete clause.statement;
456                delete clause.condition;
457        }
458
459        delete timeout.time;
460        delete timeout.statement;
461        delete timeout.condition;
462
463        delete orelse.statement;
464        delete orelse.condition;
465}
466
467void WaitForStmt::print( std::ostream &os, int indent ) const {
468        os << "Waitfor Statement" << endl;
469        os << string( indent + 2, ' ' ) << "with block:" << endl;
470        os << string( indent + 4, ' ' );
471        // block->print( os, indent + 4 );
472}
473
[51b7345]474NullStmt::NullStmt( std::list<Label> labels ) : CompoundStmt( labels ) {}
475NullStmt::NullStmt() : CompoundStmt( std::list<Label>() ) {}
476
[b3c36f4]477void NullStmt::print( std::ostream &os, __attribute__((unused)) int indent ) const {
[89231bc]478        os << "Null Statement" << endl ;
[51b7345]479}
480
[f1b1e4c]481ImplicitCtorDtorStmt::ImplicitCtorDtorStmt( Statement * callStmt ) : Statement( std::list<Label>() ), callStmt( callStmt ) {
482        assert( callStmt );
483}
484
[74d1804]485ImplicitCtorDtorStmt::ImplicitCtorDtorStmt( const ImplicitCtorDtorStmt & other ) : Statement( other ), callStmt( maybeClone( other.callStmt ) ) {
[f1b1e4c]486}
487
488ImplicitCtorDtorStmt::~ImplicitCtorDtorStmt() {
[74d1804]489        delete callStmt;
[f1b1e4c]490}
491
492void ImplicitCtorDtorStmt::print( std::ostream &os, int indent ) const {
493        os << "Implicit Ctor Dtor Statement" << endl;
494        os << string( indent + 2, ' ' ) << "with Ctor/Dtor: ";
495        callStmt->print( os, indent + 2);
496        os << endl;
497}
498
[3906301]499std::ostream & operator<<( std::ostream & out, const Statement * statement ) {
[8bf784a]500        if ( statement ) {
501                statement->print( out );
502        } else {
503                out << "nullptr";
504        }
[baf7fee]505        return out;
506}
507
[0dd3a2f]508// Local Variables: //
509// tab-width: 4 //
510// mode: c++ //
511// compile-command: "make install" //
512// End: //
Note: See TracBrowser for help on using the repository browser.