mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Clarify precedence in macro.
This commit is contained in:
parent
75fe77115d
commit
1fb8060263
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
|||
#include <intrin.h>
|
||||
#else
|
||||
#include <x86intrin.h>
|
||||
#define _rotl64(x,r) (((u64)x << r) | ((u64)x >> (64 - r)))
|
||||
#define _rotl64(x,r) (((u64)(x) << (r)) | ((u64)(x) >> (64 - (r))))
|
||||
#endif
|
||||
|
||||
#define UNIMPLEMENTED() UNK(__FUNCTION__)
|
||||
|
|
Loading…
Add table
Reference in a new issue