Changeset 8e7c9fe in mainline for kernel/genarch/include
- Timestamp:
- 2014-09-12T03:45:25Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53b58e
- Parents:
- 3eb0c85 (diff), 105d8d6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/genarch/include/genarch
- Files:
-
- 2 edited
-
fb/fb.h (modified) (1 diff)
-
softint/division.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/include/genarch/fb/fb.h
r3eb0c85 r8e7c9fe 66 66 } fb_properties_t; 67 67 68 outdev_t *fb_init(fb_properties_t *props);68 extern outdev_t *fb_init(fb_properties_t *props); 69 69 70 70 #endif -
kernel/genarch/include/genarch/softint/division.h
r3eb0c85 r8e7c9fe 36 36 #define KERN_DIVISION_H_ 37 37 38 #include <cc.h> 39 40 #ifdef CONFIG_LTO 41 #define DO_NOT_DISCARD ATTRIBUTE_USED 42 #else 43 #define DO_NOT_DISCARD 44 #endif 45 38 46 extern int __divsi3(int, int); 39 47 extern long long __divdi3(long long, long long); 40 48 41 49 extern unsigned int __udivsi3(unsigned int, unsigned int); 42 extern unsigned long long __udivdi3(unsigned long long, unsigned long long) ;50 extern unsigned long long __udivdi3(unsigned long long, unsigned long long) DO_NOT_DISCARD; 43 51 44 52 extern int __modsi3(int, int); … … 46 54 47 55 extern unsigned int __umodsi3(unsigned int, unsigned int); 48 extern unsigned long long __umoddi3(unsigned long long, unsigned long long) ;56 extern unsigned long long __umoddi3(unsigned long long, unsigned long long) DO_NOT_DISCARD; 49 57 50 58 extern int __divmodsi3(int, int, int *);
Note:
See TracChangeset
for help on using the changeset viewer.
