Index: src/InitTweak/InitTweak.cpp
===================================================================
--- src/InitTweak/InitTweak.cpp	(revision ef05cf0302e9d1379cbd37d9453c404cb7a437b8)
+++ src/InitTweak/InitTweak.cpp	(revision 13481af015ae54bf5a47cfb6924bc293de6c889b)
@@ -9,7 +9,7 @@
 // Author           : Rob Schluntz
 // Created On       : Fri May 13 11:26:36 2016
-// Last Modified By : Andrew Beach
-// Last Modified On : Wed Sep 22  9:50:00 2022
-// Update Count     : 21
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Thu Jul  2 16:47:11 2026
+// Update Count     : 44
 //
 
@@ -428,20 +428,4 @@
 }
 
-#if defined( __x86_64 ) || defined( __i386 ) // assembler comment to prevent assembler warning message
-	#define ASM_COMMENT "#"
-#else // defined( __ARM_ARCH )
-	#define ASM_COMMENT "//"
-#endif
-static const char * const data_section =  ".data" ASM_COMMENT;
-static const char * const tlsd_section = ".tdata" ASM_COMMENT;
-
-void addDataSectionAttribute( ast::ObjectDecl * objDecl ) {
-	const bool is_tls = objDecl->storage.is_threadlocal_any();
-	const char * section = is_tls ? tlsd_section : data_section;
-	objDecl->attributes.push_back(new ast::Attribute("section", {
-		ast::ConstantExpr::from_string(objDecl->location, section)
-	}));
-}
-
 InitExpander::InitExpander( const ast::Init * init )
 : expander( new InitImpl{ init } ), crnt(), indices() {}
