summaryrefslogtreecommitdiff
path: root/rts/Inlines.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix up inlines for gcc 4.3Simon Marlow2008-06-191-0/+5
gcc 4.3 emits warnings for static inline functions that its heuristics decided not to inline. The workaround is to either mark appropriate functions as "hot" (a new attribute in gcc 4.3), or sometimes to use "extern inline" instead. With this fix I can validate with gcc 4.3 on Fedora 9.