Index: src/CodeGen/GenType.cc
===================================================================
--- src/CodeGen/GenType.cc	(revision 82dd287be3d478bfc671d7f0679e11c94f8b8500)
+++ src/CodeGen/GenType.cc	(revision 34e3732c8959ca653eec7663bfb050d6fedd9ded)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Mon May 18 07:44:20 2015
-// Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Jun  8 14:36:02 2015
-// Update Count     : 9
+// Last Modified By : Rob Schluntz
+// Last Modified On : Wed Jul 08 16:08:24 2015
+// Update Count     : 10
 //
 
@@ -93,10 +93,11 @@
 			os << "_Atomic ";
 		} // if
-		if ( isVarLen ) {
-			os << "*";
-		} // if
 		if ( dimension != 0 ) {
 			CodeGenerator cg( os );
 			dimension->accept( cg );
+		} else if ( isVarLen ) {
+			// no dimension expression on a VLA
+			// means it came in with the * token
+			os << "*";
 		} // if
 		os << "]";
