Skip to content

Commit

Permalink
tilepro: work around module link error with gcc 4.7
Browse files Browse the repository at this point in the history
gcc 4.7.x is emitting calls to __ffsdi2 where previously
it used to inline the appropriate ctz instructions.
While this needs to be fixed in gcc, it's also easy to avoid
having it cause build failures when building with those
compilers by exporting __ffsdi2 to modules.

Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Cc: stable@kernel.org
  • Loading branch information
Chris Metcalf committed Jun 15, 2013
1 parent 317ddd2 commit 3cb3f83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions arch/tile/lib/exports.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,6 @@ uint64_t __ashrdi3(uint64_t, unsigned int);
EXPORT_SYMBOL(__ashrdi3);
uint64_t __ashldi3(uint64_t, unsigned int);
EXPORT_SYMBOL(__ashldi3);
int __ffsdi2(uint64_t);
EXPORT_SYMBOL(__ffsdi2);
#endif

0 comments on commit 3cb3f83

Please sign in to comment.