Changeset c2051e10 for src/SynTree
- Timestamp:
- Sep 10, 2019, 2:48:01 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
- Children:
- 81e60f7
- Parents:
- 17bc05b (diff), 216597d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- src/SynTree
- Files:
-
- 3 edited
-
Expression.cc (modified) (2 diffs)
-
Expression.h (modified) (2 diffs)
-
Type.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Expression.cc
r17bc05b rc2051e10 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : T ue Aug 13 11:31:00 201913 // Update Count : 6 312 // Last Modified On : Thr Aug 15 13:43:00 2019 13 // Update Count : 64 14 14 // 15 15 … … 646 646 result = new VoidType( Type::Qualifiers() ); 647 647 } 648 } 649 bool StmtExpr::get_lvalue() const { 650 return result->get_lvalue(); 648 651 } 649 652 void StmtExpr::print( std::ostream & os, Indenter indent ) const { -
src/SynTree/Expression.h
r17bc05b rc2051e10 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Wed Aug 14 14:24:00 201913 // Update Count : 5 312 // Last Modified On : Thr Aug 15 13:46:00 2019 13 // Update Count : 54 14 14 // 15 15 … … 777 777 virtual ~StmtExpr(); 778 778 779 bool get_lvalue() const final; 780 779 781 CompoundStmt * get_statements() const { return statements; } 780 782 StmtExpr * set_statements( CompoundStmt * newValue ) { statements = newValue; return this; } -
src/SynTree/Type.h
r17bc05b rc2051e10 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Thu Feb 14 17:11:24201913 // Update Count : 1 6911 // Last Modified By : Andrew Beach 12 // Last Modified On : Wed Sep 4 09:58:00 2019 13 // Update Count : 170 14 14 // 15 15 … … 131 131 bool operator>( Qualifiers other ) const { return *this != other && *this >= other; } 132 132 BFCommon( Qualifiers, NumTypeQualifier ) 133 134 Qualifiers unify( Qualifiers const & other ) const { 135 int or_flags = Mask & (val | other.val); 136 int and_flags = val & other.val; 137 return Qualifiers( or_flags | and_flags ); 138 } 133 139 }; // Qualifiers 134 140
Note:
See TracChangeset
for help on using the changeset viewer.