Changeset 8348846 in mainline for uspace/lib/softint/generic/shift.c


Ignore:
Timestamp:
2018-01-15T22:39:24Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2013ea9, aec41c8
Parents:
dbbbe75b
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-15 21:54:21)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-15 22:39:24)
Message:

Fix symbols in libsoftint.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/softint/generic/shift.c

    rdbbbe75b r8348846  
    3434 */
    3535
     36#include <alias.h>
    3637#include <shift.h>
    3738#include <lltype.h>
    3839
    39 long long __ashldi3 (long long val, int shift)
     40long long __ashlti3 (long long val, int shift)
    4041{
    4142        union lltype ll;
     
    6566}
    6667
    67 long long __ashrdi3 (long long val, int shift)
     68long long __ashrti3 (long long val, int shift)
    6869{
    6970        union lltype ll;
     
    9596}
    9697
    97 long long __lshrdi3 (long long val, int shift)
     98long long __lshrti3 (long long val, int shift)
    9899{
    99100        union lltype ll;
     
    133134}
    134135
     136#if LONG_MAX == LLONG_MAX
     137long ALIAS(__ashl, i3);
     138long ALIAS(__ashr, i3);
     139long ALIAS(__lshr, i3);
     140#endif
     141
    135142/** @}
    136143 */
Note: See TracChangeset for help on using the changeset viewer.