Changeset 8348846 in mainline for uspace/lib/softint/include/shift.h


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/include/shift.h

    rdbbbe75b r8348846  
    3838
    3939/* Arithmetic/logical shift left. */
    40 extern long long __ashldi3(long long, int);
     40extern long __ashldi3(long, int);
     41extern long long __ashlti3(long long, int);
    4142
    4243/* Arithmetic shift right. */
    43 extern long long __ashrdi3(long long, int);
     44extern long __ashrdi3(long, int);
     45extern long long __ashrti3(long long, int);
    4446
    4547/* Logical shift right. */
    46 extern long long __lshrdi3(long long, int);
     48extern long __lshrdi3(long, int);
     49extern long long __lshrti3(long long, int);
    4750
    4851
Note: See TracChangeset for help on using the changeset viewer.