Index: translator/CodeGen/GenType.cc
===================================================================
--- translator/CodeGen/GenType.cc	(revision 6c3744ea42a3b5b7c0caad3216f7a909daf8e9ed)
+++ translator/CodeGen/GenType.cc	(revision bdd516a5257cb93cc0c5b4a4c343cc112252022a)
@@ -74,4 +74,7 @@
 	if ( qualifiers.isRestrict ) {
 	    os << "__restrict ";
+	} // if
+	if ( qualifiers.isAtomic ) {
+	    os << "_Atomic ";
 	} // if
 	if ( isVarLen ) {
@@ -180,4 +183,7 @@
 	    typeString = "__restrict " + typeString;
 	} // if
+	if ( type->get_isAtomic() ) {
+	    typeString = "_Atomic " + typeString;
+	} // if
     }
 } // namespace CodeGen
