Index: src/CodeGen/GenType.cc
===================================================================
--- src/CodeGen/GenType.cc	(revision 724c2b6f8ab60e02cc9a9c5872b23139ff804274)
+++ src/CodeGen/GenType.cc	(revision 994ec2c039c407fb50939eeada77a809be205d12)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Mon May 18 07:44:20 2015
-// Last Modified By : Rob Schluntz
-// Last Modified On : Wed Jul 08 16:08:24 2015
-// Update Count     : 10
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Thu Jul  9 16:43:52 2015
+// Update Count     : 13
 //
 
@@ -93,10 +93,12 @@
 			os << "_Atomic ";
 		} // if
+		if ( qualifiers.isAttribute ) {
+			os << "__attribute(( )) ";
+		} // 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
+			// no dimension expression on a VLA means it came in with the * token
 			os << "*";
 		} // if
@@ -202,4 +204,7 @@
 			typeString = "_Atomic " + typeString;
 		} // if
+		if ( type->get_isAttribute() ) {
+			typeString = "__attribute(( )) " + typeString;
+		} // if
 	}
 } // namespace CodeGen
