mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[CRT] Use ASM aliases for CLang builds
This commit is contained in:
parent
567a5231d5
commit
281389b7e7
1 changed files with 10 additions and 2 deletions
|
@ -19,8 +19,16 @@
|
|||
#pragma function(_rotr, _rotl, _rotr, _lrotl, _lrotr)
|
||||
#endif
|
||||
|
||||
unsigned int _rotr( unsigned int value, int shift );
|
||||
unsigned long _lrotr(unsigned long value, int shift);
|
||||
#if defined (__clang__) && !defined(_MSC_VER)
|
||||
#define ASM_ALIAS __asm__
|
||||
#else
|
||||
#define ASM_ALIAS(x)
|
||||
#endif
|
||||
|
||||
unsigned int _rotr( unsigned int value, int shift ) ASM_ALIAS("__rotr");
|
||||
unsigned long _lrotr(unsigned long value, int shift) ASM_ALIAS("__lrotr");
|
||||
unsigned int _rotl( unsigned int value, int shift ) ASM_ALIAS("__rotl");
|
||||
unsigned long _lrotl( unsigned long value, int shift ) ASM_ALIAS("__lrotl");
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
|
|
Loading…
Reference in a new issue