source: src/Parser/ExpressionNode.cc @ de9285f

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 de9285f was 930f69e, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

fix lexing issue for floating-point numbers, and add "h", "hh", and "z" integral suffixes

  • Property mode set to 100644
File size: 19.7 KB
Line 
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// ExpressionNode.cc --
8//
9// Author           : Peter A. Buhr
10// Created On       : Sat May 16 13:17:07 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Sun Sep 10 09:56:06 2017
13// Update Count     : 655
14//
15
16#include <cassert>                 // for assert
17#include <stdio.h>                 // for sscanf, size_t
18#include <climits>                 // for LLONG_MAX, LONG_MAX, INT_MAX, UINT...
19#include <list>                    // for list
20#include <sstream>                 // for basic_istream::operator>>, basic_i...
21#include <string>                  // for string, operator+, operator==
22
23#include "Common/SemanticError.h"  // for SemanticError
24#include "Common/utility.h"        // for maybeMoveBuild, maybeBuild, CodeLo...
25#include "ParseNode.h"             // for ExpressionNode, maybeMoveBuildType
26#include "SynTree/Constant.h"      // for Constant
27#include "SynTree/Declaration.h"   // for EnumDecl, StructDecl, UnionDecl
28#include "SynTree/Expression.h"    // for Expression, ConstantExpr, NameExpr
29#include "SynTree/Statement.h"     // for CompoundStmt, Statement
30#include "SynTree/Type.h"          // for BasicType, Type, Type::Qualifiers
31#include "parserutility.h"         // for notZeroExpr
32
33class Initializer;
34
35using namespace std;
36
37//##############################################################################
38
39// Difficult to separate extra parts of constants during lexing because actions are not allow in the middle of patterns:
40//
41//              prefix action constant action suffix
42//
43// Alternatively, breaking a pattern using BEGIN does not work if the following pattern can be empty:
44//
45//              constant BEGIN CONT ...
46//              <CONT>(...)? BEGIN 0 ... // possible empty suffix
47//
48// because the CONT rule is NOT triggered if the pattern is empty. Hence, constants are reparsed here to determine their
49// type.
50
51extern const Type::Qualifiers noQualifiers;             // no qualifiers on constants
52
53static inline bool checkH( char c ) { return c == 'h' || c == 'H'; }
54static inline bool checkL( char c ) { return c == 'l' || c == 'L'; }
55static inline bool checkZ( char c ) { return c == 'z' || c == 'Z'; }
56static inline bool checkU( char c ) { return c == 'u' || c == 'U'; }
57static inline bool checkF( char c ) { return c == 'f' || c == 'F'; }
58static inline bool checkD( char c ) { return c == 'd' || c == 'D'; }
59static inline bool checkI( char c ) { return c == 'i' || c == 'I'; }
60static inline bool checkX( char c ) { return c == 'x' || c == 'X'; }
61
62static void sepNumeric( string & str, string & units ) {
63        string::size_type posn = str.find_first_of( "`" );
64        if ( posn != string::npos ) {
65                units = "?" + str.substr( posn );                               // extract units
66                str.erase( posn );                                                              // remove units
67        } // if
68} // sepNumeric
69
70Expression * build_constantInteger( string & str ) {
71        static const BasicType::Kind kind[2][5] = {
72                // short (h) must be before char (hh)
73                { BasicType::ShortSignedInt, BasicType::SignedChar, BasicType::SignedInt, BasicType::LongSignedInt, BasicType::LongLongSignedInt },
74                { BasicType::ShortUnsignedInt, BasicType::UnsignedChar, BasicType::UnsignedInt, BasicType::LongUnsignedInt, BasicType::LongLongUnsignedInt },
75        };
76
77        string units;                                                                           // units
78        sepNumeric( str, units );                                                       // separate constant from units
79
80        bool dec = true, Unsigned = false;                                      // decimal, unsigned constant
81        int size;                                                                                       // 0 => int, 1 => long, 2 => long long
82        unsigned long long int v;                                                       // converted integral value
83        size_t last = str.length() - 1;                                         // last character of constant
84        Expression * ret;
85
86        // special constants
87        if ( str == "0" ) {
88                ret = new ConstantExpr( Constant( (Type *)new ZeroType( noQualifiers ), str, (unsigned long long int)0 ) );
89                goto CLEANUP;
90        } // if
91        if ( str == "1" ) {
92                ret = new ConstantExpr( Constant( (Type *)new OneType( noQualifiers ), str, (unsigned long long int)1 ) );
93                goto CLEANUP;
94        } // if
95
96        if ( str[0] == '0' ) {                                                          // octal/hex constant ?
97                dec = false;
98                if ( last != 0 && checkX( str[1] ) ) {                  // hex constant ?
99                        sscanf( (char *)str.c_str(), "%llx", &v );
100                        //printf( "%llx %llu\n", v, v );
101                } else {                                                                                // octal constant
102                        sscanf( (char *)str.c_str(), "%llo", &v );
103                        //printf( "%llo %llu\n", v, v );
104                } // if
105        } else {                                                                                        // decimal constant ?
106                sscanf( (char *)str.c_str(), "%llu", &v );
107                //printf( "%llu %llu\n", v, v );
108        } // if
109
110        if ( v <= INT_MAX ) {                                                           // signed int
111                size = 2;
112        } else if ( v <= UINT_MAX && ! dec ) {                          // unsigned int
113                size = 2;
114                Unsigned = true;                                                                // unsigned
115        } else if ( v <= LONG_MAX ) {                                           // signed long int
116                size = 3;
117        } else if ( v <= ULONG_MAX && ( ! dec || LONG_MAX == LLONG_MAX ) ) { // signed long int
118                size = 3;
119                Unsigned = true;                                                                // unsigned long int
120        } else if ( v <= LLONG_MAX ) {                                          // signed long long int
121                size = 4;
122        } else {                                                                                        // unsigned long long int
123                size = 4;
124                Unsigned = true;                                                                // unsigned long long int
125        } // if
126
127        // At least one digit in integer constant, so safe to backup while looking for suffix.
128
129        if ( checkU( str[last] ) ) {                                            // suffix 'u' ?
130                Unsigned = true;
131                if ( checkL( str[last - 1] ) ) {                                // suffix 'l' ?
132                        size = 3;
133                        if ( checkL( str[last - 2] ) ) {                        // suffix "ll" ?
134                                size = 4;
135                        } // if
136                } else if ( checkH( str[last - 1] ) ) {                 // suffix 'h' ?
137                        size = 0;
138                        if ( checkH( str[last - 2] ) ) {                        // suffix "hh" ?
139                                size = 1;
140                        } // if
141                        str.erase( last - size - 1, size + 1 );         // remove 'h'/"hh"
142                } // if
143        } else if ( checkL( str[ last ] ) ) {                           // suffix 'l' ?
144                size = 3;
145                if ( checkL( str[last - 1] ) ) {                                // suffix 'll' ?
146                        size = 4;
147                        if ( checkU( str[last - 2] ) ) {                        // suffix 'u' ?
148                                Unsigned = true;
149                        } // if
150                } else if ( checkU( str[last - 1] ) ) {                 // suffix 'u' ?
151                        Unsigned = true;
152                } // if
153        } else if ( checkH( str[ last ] ) ) {                           // suffix 'h' ?
154                size = 0;
155                if ( checkH( str[last - 1] ) ) {                                // suffix "hh" ?
156                        size = 1;
157                        if ( checkU( str[last - 2] ) ) {                        // suffix 'u' ?
158                                Unsigned = true;
159                        } // if
160                } else if ( checkU( str[last - 1] ) ) {                 // suffix 'u' ?
161                        Unsigned = true;
162                } // if
163                str.erase( last - size, size + 1 );                             // remove 'h'/"hh"
164        } else if ( checkZ( str[last] ) ) {                                     // suffix 'z' ?
165                str.erase( last, 1 );                                                   // remove 'z'
166        } // if
167
168        ret = new ConstantExpr( Constant( new BasicType( noQualifiers, kind[Unsigned][size] ), str, v ) );
169  CLEANUP:
170        if ( units.length() != 0 ) {
171                ret = new UntypedExpr( new NameExpr( units ), { ret } );
172        } // if
173
174        delete &str;                                                                            // created by lex
175        return ret;
176} // build_constantInteger
177
178Expression * build_constantFloat( string & str ) {
179        static const BasicType::Kind kind[2][3] = {
180                { BasicType::Float, BasicType::Double, BasicType::LongDouble },
181                { BasicType::FloatComplex, BasicType::DoubleComplex, BasicType::LongDoubleComplex },
182        };
183
184        string units;                                                                           // units
185        sepNumeric( str, units );                                                       // separate constant from units
186
187        bool complx = false;                                                            // real, complex
188        int size = 1;                                                                           // 0 => float, 1 => double (default), 2 => long double
189        // floating-point constant has minimum of 2 characters: 1. or .1
190        size_t last = str.length() - 1;
191        double v;
192
193        sscanf( str.c_str(), "%lg", &v );
194
195        if ( checkI( str[last] ) ) {                                            // imaginary ?
196                complx = true;
197                last -= 1;                                                                              // backup one character
198        } // if
199
200        if ( checkF( str[last] ) ) {                                            // float ?
201                size = 0;
202        } else if ( checkD( str[last] ) ) {                                     // double ?
203                size = 1;
204        } else if ( checkL( str[last] ) ) {                                     // long double ?
205                size = 2;
206        } // if
207        if ( ! complx && checkI( str[last - 1] ) ) {            // imaginary ?
208                complx = true;
209        } // if
210
211        Expression * ret = new ConstantExpr( Constant( new BasicType( noQualifiers, kind[complx][size] ), str, v ) );
212        if ( units.length() != 0 ) {
213                ret = new UntypedExpr( new NameExpr( units ), { ret } );
214        } // if
215
216        delete &str;                                                                            // created by lex
217        return ret;
218} // build_constantFloat
219
220static void sepString( string & str, string & units, char delimit ) {
221        string::size_type posn = str.find_last_of( delimit ) + 1;
222        if ( posn != str.length() ) {
223                units = "?" + str.substr( posn );                               // extract units
224                str.erase( posn );                                                              // remove units
225        } // if
226} // sepString
227
228Expression * build_constantChar( string & str ) {
229        string units;                                                                           // units
230        sepString( str, units, '\'' );                                          // separate constant from units
231
232        Expression * ret = new ConstantExpr( Constant( new BasicType( noQualifiers, BasicType::Char ), str, (unsigned long long int)(unsigned char)str[1] ) );
233        if ( units.length() != 0 ) {
234                ret = new UntypedExpr( new NameExpr( units ), { ret } );
235        } // if
236
237        delete &str;                                                                            // created by lex
238        return ret;
239} // build_constantChar
240
241Expression * build_constantStr( string & str ) {
242        string units;                                                                           // units
243        sepString( str, units, '"' );                                           // separate constant from units
244
245        BasicType::Kind strtype = BasicType::Char;                      // default string type
246        switch ( str[0] ) {                                                                     // str has >= 2 characters, i.e, null string ""
247          case 'u':
248                if ( str[1] == '8' ) break;                                             // utf-8 characters
249                strtype = BasicType::ShortUnsignedInt;
250                break;
251          case 'U':
252                strtype = BasicType::UnsignedInt;
253                break;
254          case 'L':
255                strtype = BasicType::SignedInt;
256                break;
257        } // switch
258        ArrayType * at = new ArrayType( noQualifiers, new BasicType( Type::Qualifiers( Type::Const ), strtype ),
259                                                                        new ConstantExpr( Constant::from_ulong( str.size() + 1 - 2 ) ), // +1 for '\0' and -2 for '"'
260                                                                        false, false );
261        Expression * ret = new ConstantExpr( Constant( at, str, (unsigned long long int)0 ) ); // constant 0 is ignored for pure string value
262        if ( units.length() != 0 ) {
263                ret = new UntypedExpr( new NameExpr( units ), { ret } );
264        } // if
265
266        delete &str;                                                                            // created by lex
267        return ret;
268} // build_constantStr
269
270Expression * build_field_name_FLOATING_FRACTIONconstant( const string & str ) {
271        if ( str.find_first_not_of( "0123456789", 1 ) != string::npos ) throw SemanticError( "invalid tuple index " + str );
272        Expression * ret = build_constantInteger( *new string( str.substr(1) ) );
273        delete &str;
274        return ret;
275} // build_field_name_FLOATING_FRACTIONconstant
276
277Expression * build_field_name_FLOATING_DECIMALconstant( const string & str ) {
278        if ( str[str.size()-1] != '.' ) throw SemanticError( "invalid tuple index " + str );
279        Expression * ret = build_constantInteger( *new string( str.substr( 0, str.size()-1 ) ) );
280        delete &str;
281        return ret;
282} // build_field_name_FLOATING_DECIMALconstant
283
284Expression * build_field_name_FLOATINGconstant( const string & str ) {
285        // str is of the form A.B -> separate at the . and return member expression
286        int a, b;
287        char dot;
288        stringstream ss( str );
289        ss >> a >> dot >> b;
290        UntypedMemberExpr * ret = new UntypedMemberExpr( new ConstantExpr( Constant::from_int( b ) ), new ConstantExpr( Constant::from_int( a ) ) );
291        delete &str;
292        return ret;
293} // build_field_name_FLOATINGconstant
294
295Expression * make_field_name_fraction_constants( Expression * fieldName, Expression * fracts ) {
296        if ( fracts ) {
297                if ( UntypedMemberExpr * memberExpr = dynamic_cast< UntypedMemberExpr * >( fracts ) ) {
298                        memberExpr->set_member( make_field_name_fraction_constants( fieldName, memberExpr->get_aggregate() ) );
299                        return memberExpr;
300                } else {
301                        return new UntypedMemberExpr( fracts, fieldName );
302                } // if
303        } // if
304        return fieldName;
305} // make_field_name_fraction_constants
306
307Expression * build_field_name_fraction_constants( Expression * fieldName, ExpressionNode * fracts ) {
308        return make_field_name_fraction_constants( fieldName, maybeMoveBuild< Expression >( fracts ) );
309} // build_field_name_fraction_constants
310
311NameExpr * build_varref( const string * name ) {
312        NameExpr * expr = new NameExpr( *name, nullptr );
313        delete name;
314        return expr;
315} // build_varref
316
317// TODO: get rid of this and OperKinds and reuse code from OperatorTable
318static const char * OperName[] = {                                              // must harmonize with OperKinds
319        // diadic
320        "SizeOf", "AlignOf", "OffsetOf", "?+?", "?-?", "?\\?", "?*?", "?/?", "?%?", "||", "&&",
321        "?|?", "?&?", "?^?", "Cast", "?<<?", "?>>?", "?<?", "?>?", "?<=?", "?>=?", "?==?", "?!=?",
322        "?=?", "?@=?", "?\\=?", "?*=?", "?/=?", "?%=?", "?+=?", "?-=?", "?<<=?", "?>>=?", "?&=?", "?^=?", "?|=?",
323        "?[?]", "...",
324        // monadic
325        "+?", "-?", "AddressOf", "*?", "!?", "~?", "++?", "?++", "--?", "?--",
326}; // OperName
327
328Expression * build_cast( DeclarationNode * decl_node, ExpressionNode * expr_node ) {
329        Type * targetType = maybeMoveBuildType( decl_node );
330        if ( dynamic_cast< VoidType * >( targetType ) ) {
331                delete targetType;
332                return new CastExpr( maybeMoveBuild< Expression >(expr_node) );
333        } else {
334                return new CastExpr( maybeMoveBuild< Expression >(expr_node), targetType );
335        } // if
336} // build_cast
337
338Expression * build_virtual_cast( DeclarationNode * decl_node, ExpressionNode * expr_node ) {
339        Type * targetType = maybeMoveBuildType( decl_node );
340        Expression * castArg = maybeMoveBuild< Expression >( expr_node );
341        return new VirtualCastExpr( castArg, targetType );
342} // build_virtual_cast
343
344Expression * build_fieldSel( ExpressionNode * expr_node, Expression * member ) {
345        UntypedMemberExpr * ret = new UntypedMemberExpr( member, maybeMoveBuild< Expression >(expr_node) );
346        return ret;
347} // build_fieldSel
348
349Expression * build_pfieldSel( ExpressionNode * expr_node, Expression * member ) {
350        UntypedExpr * deref = new UntypedExpr( new NameExpr( "*?" ) );
351        deref->location = expr_node->location;
352        deref->get_args().push_back( maybeMoveBuild< Expression >(expr_node) );
353        UntypedMemberExpr * ret = new UntypedMemberExpr( member, deref );
354        return ret;
355} // build_pfieldSel
356
357Expression * build_addressOf( ExpressionNode * expr_node ) {
358                return new AddressExpr( maybeMoveBuild< Expression >(expr_node) );
359} // build_addressOf
360
361Expression * build_sizeOfexpr( ExpressionNode * expr_node ) {
362        return new SizeofExpr( maybeMoveBuild< Expression >(expr_node) );
363} // build_sizeOfexpr
364
365Expression * build_sizeOftype( DeclarationNode * decl_node ) {
366        return new SizeofExpr( maybeMoveBuildType( decl_node ) );
367} // build_sizeOftype
368
369Expression * build_alignOfexpr( ExpressionNode * expr_node ) {
370        return new AlignofExpr( maybeMoveBuild< Expression >(expr_node) );
371} // build_alignOfexpr
372
373Expression * build_alignOftype( DeclarationNode * decl_node ) {
374        return new AlignofExpr( maybeMoveBuildType( decl_node) );
375} // build_alignOftype
376
377Expression * build_offsetOf( DeclarationNode * decl_node, NameExpr * member ) {
378        Expression * ret = new UntypedOffsetofExpr( maybeMoveBuildType( decl_node ), member->get_name() );
379        delete member;
380        return ret;
381} // build_offsetOf
382
383Expression * build_and_or( ExpressionNode * expr_node1, ExpressionNode * expr_node2, bool kind ) {
384        return new LogicalExpr( notZeroExpr( maybeMoveBuild< Expression >(expr_node1) ), notZeroExpr( maybeMoveBuild< Expression >(expr_node2) ), kind );
385} // build_and_or
386
387Expression * build_unary_val( OperKinds op, ExpressionNode * expr_node ) {
388        list< Expression * > args;
389        args.push_back( maybeMoveBuild< Expression >(expr_node) );
390        return new UntypedExpr( new NameExpr( OperName[ (int)op ] ), args );
391} // build_unary_val
392
393Expression * build_unary_ptr( OperKinds op, ExpressionNode * expr_node ) {
394        list< Expression * > args;
395        args.push_back(  maybeMoveBuild< Expression >(expr_node) ); // xxx -- this is exactly the same as the val case now, refactor this code.
396        return new UntypedExpr( new NameExpr( OperName[ (int)op ] ), args );
397} // build_unary_ptr
398
399Expression * build_binary_val( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 ) {
400        list< Expression * > args;
401        args.push_back( maybeMoveBuild< Expression >(expr_node1) );
402        args.push_back( maybeMoveBuild< Expression >(expr_node2) );
403        return new UntypedExpr( new NameExpr( OperName[ (int)op ] ), args );
404} // build_binary_val
405
406Expression * build_binary_ptr( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 ) {
407        list< Expression * > args;
408        args.push_back( maybeMoveBuild< Expression >(expr_node1) );
409        args.push_back( maybeMoveBuild< Expression >(expr_node2) );
410        return new UntypedExpr( new NameExpr( OperName[ (int)op ] ), args );
411} // build_binary_ptr
412
413Expression * build_cond( ExpressionNode * expr_node1, ExpressionNode * expr_node2, ExpressionNode * expr_node3 ) {
414        return new ConditionalExpr( notZeroExpr( maybeMoveBuild< Expression >(expr_node1) ), maybeMoveBuild< Expression >(expr_node2), maybeMoveBuild< Expression >(expr_node3) );
415} // build_cond
416
417Expression * build_comma( ExpressionNode * expr_node1, ExpressionNode * expr_node2 ) {
418        return new CommaExpr( maybeMoveBuild< Expression >(expr_node1), maybeMoveBuild< Expression >(expr_node2) );
419} // build_comma
420
421Expression * build_attrexpr( NameExpr * var, ExpressionNode * expr_node ) {
422        return new AttrExpr( var, maybeMoveBuild< Expression >(expr_node) );
423} // build_attrexpr
424
425Expression * build_attrtype( NameExpr * var, DeclarationNode * decl_node ) {
426        return new AttrExpr( var, maybeMoveBuildType( decl_node ) );
427} // build_attrtype
428
429Expression * build_tuple( ExpressionNode * expr_node ) {
430        list< Expression * > exprs;
431        buildMoveList( expr_node, exprs );
432        return new UntypedTupleExpr( exprs );;
433} // build_tuple
434
435Expression * build_func( ExpressionNode * function, ExpressionNode * expr_node ) {
436        list< Expression * > args;
437        buildMoveList( expr_node, args );
438        return new UntypedExpr( maybeMoveBuild< Expression >(function), args, nullptr );
439} // build_func
440
441Expression * build_range( ExpressionNode * low, ExpressionNode * high ) {
442        return new RangeExpr( maybeMoveBuild< Expression >( low ), maybeMoveBuild< Expression >( high ) );
443} // build_range
444
445Expression * build_asmexpr( ExpressionNode * inout, Expression * constraint, ExpressionNode * operand ) {
446        return new AsmExpr( maybeMoveBuild< Expression >( inout ), constraint, maybeMoveBuild< Expression >(operand) );
447} // build_asmexpr
448
449Expression * build_valexpr( StatementNode * s ) {
450        return new StmtExpr( dynamic_cast< CompoundStmt * >(maybeMoveBuild< Statement >(s) ) );
451} // build_valexpr
452
453Expression * build_typevalue( DeclarationNode * decl ) {
454        return new TypeExpr( maybeMoveBuildType( decl ) );
455} // build_typevalue
456
457Expression * build_compoundLiteral( DeclarationNode * decl_node, InitializerNode * kids ) {
458        Declaration * newDecl = maybeBuild< Declaration >(decl_node); // compound literal type
459        if ( DeclarationWithType * newDeclWithType = dynamic_cast< DeclarationWithType * >( newDecl ) ) { // non-sue compound-literal type
460                return new CompoundLiteralExpr( newDeclWithType->get_type(), maybeMoveBuild< Initializer >(kids) );
461        // these types do not have associated type information
462        } else if ( StructDecl * newDeclStructDecl = dynamic_cast< StructDecl * >( newDecl )  ) {
463                if ( newDeclStructDecl->has_body() ) {
464                        return new CompoundLiteralExpr( new StructInstType( Type::Qualifiers(), newDeclStructDecl ), maybeMoveBuild< Initializer >(kids) );
465                } else {
466                        return new CompoundLiteralExpr( new StructInstType( Type::Qualifiers(), newDeclStructDecl->get_name() ), maybeMoveBuild< Initializer >(kids) );
467                } // if
468        } else if ( UnionDecl * newDeclUnionDecl = dynamic_cast< UnionDecl * >( newDecl )  ) {
469                if ( newDeclUnionDecl->has_body() ) {
470                        return new CompoundLiteralExpr( new UnionInstType( Type::Qualifiers(), newDeclUnionDecl ), maybeMoveBuild< Initializer >(kids) );
471                } else {
472                        return new CompoundLiteralExpr( new UnionInstType( Type::Qualifiers(), newDeclUnionDecl->get_name() ), maybeMoveBuild< Initializer >(kids) );
473                } // if
474        } else if ( EnumDecl * newDeclEnumDecl = dynamic_cast< EnumDecl * >( newDecl )  ) {
475                if ( newDeclEnumDecl->has_body() ) {
476                        return new CompoundLiteralExpr( new EnumInstType( Type::Qualifiers(), newDeclEnumDecl ), maybeMoveBuild< Initializer >(kids) );
477                } else {
478                        return new CompoundLiteralExpr( new EnumInstType( Type::Qualifiers(), newDeclEnumDecl->get_name() ), maybeMoveBuild< Initializer >(kids) );
479                } // if
480        } else {
481                assert( false );
482        } // if
483} // build_compoundLiteral
484
485// Local Variables: //
486// tab-width: 4 //
487// mode: c++ //
488// compile-command: "make install" //
489// End: //
Note: See TracBrowser for help on using the repository browser.