Index: src/SymTab/Demangle.cc
===================================================================
--- src/SymTab/Demangle.cc	(revision e67991fd01d5341ea7ee45736431dbe64851911e)
+++ src/SymTab/Demangle.cc	(revision 99cadc602bbd3d6068509ad13a17cbc5e1a52a8e)
@@ -9,7 +9,7 @@
 // Author           : Rob Schluntz
 // Created On       : Thu Jul 19 12:52:41 2018
-// Last Modified By : Rob Schluntz
-// Last Modified On : Thu Jul 19 12:54:35 2018
-// Update Count     : 2
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Tue Jul 30 13:46:33 2019
+// Update Count     : 3
 //
 
@@ -313,8 +313,4 @@
 			typeString = "_Atomic " + typeString;
 		} // if
-		if ( type->get_lvalue() ) {
-			// when not generating C code, print lvalue for debugging.
-			typeString = "lvalue " + typeString;
-		}
 	}
 }
Index: src/SymTab/Mangler.cc
===================================================================
--- src/SymTab/Mangler.cc	(revision e67991fd01d5341ea7ee45736431dbe64851911e)
+++ src/SymTab/Mangler.cc	(revision 99cadc602bbd3d6068509ad13a17cbc5e1a52a8e)
@@ -10,6 +10,6 @@
 // Created On       : Sun May 17 21:40:29 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Sep 25 15:49:26 2017
-// Update Count     : 23
+// Last Modified On : Tue Jul 30 13:46:10 2019
+// Update Count     : 26
 //
 #include "Mangler.h"
@@ -377,9 +377,4 @@
 					mangleName << Encoding::qualifiers.at(Type::Mutex);
 				} // if
-				if ( type->get_lvalue() ) {
-					// mangle based on whether the type is lvalue, so that the resolver can differentiate lvalues and rvalues
-					mangleName << Encoding::qualifiers.at(Type::Lvalue);
-				}
-
 				if ( inFunctionType ) {
 					// turn off inFunctionType so that types can be differentiated for nested qualifiers
@@ -724,9 +719,4 @@
 				mangleName << Encoding::qualifiers.at(Type::Mutex);
 			} // if
-			if ( type->is_lvalue() ) {
-				// mangle based on whether the type is lvalue, so that the resolver can differentiate lvalues and rvalues
-				mangleName << Encoding::qualifiers.at(Type::Lvalue);
-			}
-
 			if ( inFunctionType ) {
 				// turn off inFunctionType so that types can be differentiated for nested qualifiers
