Index: src/CodeGen/OperatorTable.cc
===================================================================
--- src/CodeGen/OperatorTable.cc	(revision 07de76bb7a0e1179ac6fb9bae0cb96e709315c84)
+++ src/CodeGen/OperatorTable.cc	(revision 8abca0660e7023ad48db341fe98ce11969bb2e8a)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Jul 15 17:12:22 2017
-// Update Count     : 15
+// Last Modified On : Mon Feb 10 18:12:12 2020
+// Update Count     : 17
 //
 
@@ -87,9 +87,8 @@
 		std::map< std::string, OperatorInfo >::const_iterator i = table.find( funcName );
 		if ( i == table.end() ) {
-			if ( isPrefix( funcName, "?`" ) ) {
-				// handle literal suffixes, which are user-defined postfix operators
+			if ( isPrefix( funcName, "?`" ) ) {			// user-defined postfix operator ?
 				info.inputName = funcName;
 				info.symbol = funcName.substr(2);
-				info.outputName = toString( "__operator_literal_", info.symbol );
+				info.outputName = toString( "__postfix_call_", info.symbol );
 				info.type = OT_POSTFIX;
 				return true;
