]> git.baikalelectronics.ru Git - kernel.git/commit
arch/tile: avoid exporting a symbol no longer used by gcc
authorChris Metcalf <cmetcalf@tilera.com>
Thu, 3 Nov 2011 02:23:41 +0000 (22:23 -0400)
committerChris Metcalf <cmetcalf@tilera.com>
Thu, 3 Nov 2011 20:58:42 +0000 (16:58 -0400)
commitf7773adcfb5c66b7e4ab37488382748995d1628e
tree97e93b14a0cf6b640847db8f4c133a1e9ea777c3
parent337771f3520302a539c8ba520f20f2b1b09ba826
arch/tile: avoid exporting a symbol no longer used by gcc

An earlier Tilera compiler generated calls to an "__ll_mul"
function for long long multiplication.  Our libgcc supported that
as an alias for the normal __muldi3 routine, so we made it available
to kernel modules as well.  However, for a while now the compiler
has internally been generating only the standard __muldi3 symbol,
and the version we are giving back to the community does not have
the __ll_mul alias, so we are removing it from the kernel too.

Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
arch/tile/lib/exports.c