forked from riscv-collab/riscv-gnu-toolchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into centos7-build
- Loading branch information
Showing
484 changed files
with
37,784 additions
and
9,755 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,26 @@ | |
#ifndef __ASM_GENERIC_BITS_PER_LONG | ||
#define __ASM_GENERIC_BITS_PER_LONG | ||
|
||
#ifndef __BITS_PER_LONG | ||
/* | ||
* In order to keep safe and avoid regression, only unify uapi | ||
* bitsperlong.h for some archs which are using newer toolchains | ||
* that have the definitions of __CHAR_BIT__ and __SIZEOF_LONG__. | ||
* See the following link for more info: | ||
* https://lore.kernel.org/linux-arch/[email protected]/ | ||
*/ | ||
#if defined(__CHAR_BIT__) && defined(__SIZEOF_LONG__) | ||
#define __BITS_PER_LONG (__CHAR_BIT__ * __SIZEOF_LONG__) | ||
#else | ||
/* | ||
* There seems to be no way of detecting this automatically from user | ||
* space, so 64 bit architectures should override this in their | ||
* bitsperlong.h. In particular, an architecture that supports | ||
* both 32 and 64 bit user space must not rely on CONFIG_64BIT | ||
* to decide it, but rather check a compiler provided macro. | ||
*/ | ||
#ifndef __BITS_PER_LONG | ||
#define __BITS_PER_LONG 32 | ||
#endif | ||
#endif | ||
|
||
#endif /* __ASM_GENERIC_BITS_PER_LONG */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.