Index: src/InitTweak/InitTweak.cc
===================================================================
--- src/InitTweak/InitTweak.cc	(revision cb304ca4a4f0b5385962a0bc957fb46da37c2092)
+++ src/InitTweak/InitTweak.cc	(revision 02f4eb8677a64f5dfecc2133d01badd254fc0793)
@@ -10,6 +10,6 @@
 // Created On       : Fri May 13 11:26:36 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Jun 16 16:40:24 2021
-// Update Count     : 10
+// Last Modified On : Wed Jun 16 20:57:22 2021
+// Update Count     : 18
 //
 
@@ -1217,20 +1217,22 @@
 	void addDataSectonAttribute( ObjectDecl * objDecl ) {
 		objDecl->attributes.push_back(new Attribute("section", {
-#if defined( __x86_64 ) || defined( __i386 )
-			new ConstantExpr( Constant::from_string(".data#") ),
+			new ConstantExpr( Constant::from_string(".data"
+#if defined( __x86_64 ) || defined( __i386 ) // assembler comment to prevent assembler warning message
+					"#"
 #else // defined( __ARM_ARCH )
-			new ConstantExpr( Constant::from_string(".data//") ),
+					"//"
 #endif
-		}));
+				))}));
 	}
 
 	void addDataSectionAttribute( ast::ObjectDecl * objDecl ) {
 		objDecl->attributes.push_back(new ast::Attribute("section", {
-#if defined( __x86_64 ) || defined( __i386 )
-			ast::ConstantExpr::from_string(objDecl->location, ".data#"),
+			ast::ConstantExpr::from_string(objDecl->location, ".data"
+#if defined( __x86_64 ) || defined( __i386 ) // assembler comment to prevent assembler warning message
+					"#"
 #else // defined( __ARM_ARCH )
-			ast::ConstantExpr::from_string(objDecl->location, ".data//"),
+					"//"
 #endif
-		}));
+				)}));
 	}
 
