Changeset 612
- Timestamp:
- Aug 16, 2003, 7:04:48 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gcc/gcc/config/i386/emx.c
-
Property cvs2svn:cvs-rev
changed from
1.15
to1.16
r611 r612 113 113 an attached attribute (either optlink or system). 114 114 This is the only part which is changing the mangling. */ 115 if ( !strcmp (IDENTIFIER_POINTER (name), "__system__") 116 || !strcmp (IDENTIFIER_POINTER (name), "system") ) 115 if (is_attribute_p ("system", name)) 117 116 { 118 117 /* Here we mangle _System functions as defined by IBM specs. … … 140 139 } 141 140 } 142 else if ( !strcmp (IDENTIFIER_POINTER (name), "__optlink__") 143 || !strcmp (IDENTIFIER_POINTER (name), "optlink")) 141 else if (is_attribute_p ("optlink", name)) 144 142 { 145 143 /* At the moment we're only implementing OS/2 VAC linking -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.