Index: src/SymTab/Autogen.cc
===================================================================
--- src/SymTab/Autogen.cc	(revision 395fc378ab2a1e951811ea084320ee6ea6f95015)
+++ src/SymTab/Autogen.cc	(revision c2bfb3191eaedf374e596db78db2a6dda4c58f0b)
@@ -10,6 +10,6 @@
 // Created On       : Thu Mar 03 15:45:56 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Mar 16 08:37:22 2017
-// Update Count     : 59
+// Last Modified On : Fri Mar 17 09:41:08 2017
+// Update Count     : 60
 //
 
@@ -323,5 +323,5 @@
 				}
 
-				if ( type->get_qualifiers().isConst && func->get_name() == "?=?" ) {
+				if ( type->get_const() && func->get_name() == "?=?" ) {
 					// don't assign const members, but do construct/destruct
 					continue;
Index: src/SymTab/Autogen.h
===================================================================
--- src/SymTab/Autogen.h	(revision 395fc378ab2a1e951811ea084320ee6ea6f95015)
+++ src/SymTab/Autogen.h	(revision c2bfb3191eaedf374e596db78db2a6dda4c58f0b)
@@ -10,6 +10,6 @@
 // Created On       : Sun May 17 21:53:34 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Mar 16 07:51:39 2017
-// Update Count     : 8
+// Last Modified On : Fri Mar 17 09:10:41 2017
+// Update Count     : 9
 //
 
@@ -60,5 +60,5 @@
 //			castType->get_qualifiers() -= Type::Qualifiers(true, true, true, false, true, false);
 			castType->get_qualifiers() -= Type::Qualifiers( Type::Const | Type::Volatile | Type::Restrict | Type::Atomic );
-			castType->set_isLvalue( true ); // xxx - might not need this
+			castType->set_lvalue( true ); // xxx - might not need this
 			dstParam = new CastExpr( dstParam, new PointerType( Type::Qualifiers(), castType ) );
 		}
Index: src/SymTab/Mangler.cc
===================================================================
--- src/SymTab/Mangler.cc	(revision 395fc378ab2a1e951811ea084320ee6ea6f95015)
+++ src/SymTab/Mangler.cc	(revision c2bfb3191eaedf374e596db78db2a6dda4c58f0b)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Sun May 17 21:40:29 2015
-// Last Modified By : Rob Schluntz
-// Last Modified On : Wed Aug 19 15:52:24 2015
-// Update Count     : 19
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Fri Mar 17 09:40:01 2017
+// Update Count     : 20
 //
 
@@ -294,8 +294,8 @@
 			mangleName << "_";
 		} // if
-		if ( type->get_isConst() ) {
+		if ( type->get_const() ) {
 			mangleName << "C";
 		} // if
-		if ( type->get_isVolatile() ) {
+		if ( type->get_volatile() ) {
 			mangleName << "V";
 		} // if
@@ -304,8 +304,8 @@
 //			mangleName << "R";
 //		} // if
-		if ( type->get_isLvalue() ) {
+		if ( type->get_lvalue() ) {
 			mangleName << "L";
 		} // if
-		if ( type->get_isAtomic() ) {
+		if ( type->get_atomic() ) {
 			mangleName << "A";
 		} // if
