Skip to content

Commit 579a663

Browse files
hcahcaAlexander Gordeev
authored andcommitted
s390: Rename GCC_ASM_FLAG_OUTPUT_BROKEN to CC_ASM_FLAG_OUTPUT_BROKEN
Config options which can be used to check for compiler bugs and features have the compiler independent CC prefix in order to avoid duplicating and having to check config options for multiple compilers. Therefore rename the config option accordingly. Reviewed-by: Alexander Gordeev <agordeev@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
1 parent 1d7a971 commit 579a663

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arch/s390/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ config KASAN_SHADOW_OFFSET
5252
depends on KASAN
5353
default 0x1C000000000000
5454

55-
config GCC_ASM_FLAG_OUTPUT_BROKEN
55+
config CC_ASM_FLAG_OUTPUT_BROKEN
5656
def_bool CC_IS_GCC && GCC_VERSION < 140200
5757
help
5858
GCC versions before 14.2.0 may die with an internal

arch/s390/include/asm/asm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* [var] also contains the program mask. CC_TRANSFORM() moves the condition
2929
* code to the two least significant bits and sets all other bits to zero.
3030
*/
31-
#if defined(__GCC_ASM_FLAG_OUTPUTS__) && !(IS_ENABLED(CONFIG_GCC_ASM_FLAG_OUTPUT_BROKEN))
31+
#if defined(__GCC_ASM_FLAG_OUTPUTS__) && !(IS_ENABLED(CONFIG_CC_ASM_FLAG_OUTPUT_BROKEN))
3232

3333
#define __HAVE_ASM_FLAG_OUTPUTS__
3434

0 commit comments

Comments
 (0)