- Timestamp:
- Jun 16, 2021, 9:06:42 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 26d944c
- Parents:
- cb304ca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/InitTweak.cc
rcb304ca r02f4eb8 10 10 // Created On : Fri May 13 11:26:36 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Jun 16 16:40:24202113 // Update Count : 1 012 // Last Modified On : Wed Jun 16 20:57:22 2021 13 // Update Count : 18 14 14 // 15 15 … … 1217 1217 void addDataSectonAttribute( ObjectDecl * objDecl ) { 1218 1218 objDecl->attributes.push_back(new Attribute("section", { 1219 #if defined( __x86_64 ) || defined( __i386 ) 1220 new ConstantExpr( Constant::from_string(".data#") ), 1219 new ConstantExpr( Constant::from_string(".data" 1220 #if defined( __x86_64 ) || defined( __i386 ) // assembler comment to prevent assembler warning message 1221 "#" 1221 1222 #else // defined( __ARM_ARCH ) 1222 new ConstantExpr( Constant::from_string(".data//") ),1223 "//" 1223 1224 #endif 1224 }));1225 ))})); 1225 1226 } 1226 1227 1227 1228 void addDataSectionAttribute( ast::ObjectDecl * objDecl ) { 1228 1229 objDecl->attributes.push_back(new ast::Attribute("section", { 1229 #if defined( __x86_64 ) || defined( __i386 ) 1230 ast::ConstantExpr::from_string(objDecl->location, ".data#"), 1230 ast::ConstantExpr::from_string(objDecl->location, ".data" 1231 #if defined( __x86_64 ) || defined( __i386 ) // assembler comment to prevent assembler warning message 1232 "#" 1231 1233 #else // defined( __ARM_ARCH ) 1232 ast::ConstantExpr::from_string(objDecl->location, ".data//"),1234 "//" 1233 1235 #endif 1234 }));1236 )})); 1235 1237 } 1236 1238
Note: See TracChangeset
for help on using the changeset viewer.