Changeset 596
- Timestamp:
- Aug 15, 2003, 3:41:13 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testcase/weak/weaksimple.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r595 r596 1 #if 0 /* doesn't work :/ Why?!? */ 1 #define WEAKBSS 2 /* must be compiled with -fno-common! */ 3 4 #ifdef WEAKBSS 2 5 #pragma weak weakbss 3 6 int weakbss; … … 15 18 int main() 16 19 { 17 return weaktext() + /*weakbss + */ weakdata; 20 return weaktext() 21 #ifdef WEAKBSS 22 + weakbss 23 #endif 24 + weakdata; 18 25 } 19 26 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.