Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/51500 )
Change subject: arch/x86/id.S: Fix building with clang ......................................................................
arch/x86/id.S: Fix building with clang
Change-Id: I930e7b96c4428bcb95ff1903e6a3e7679171ffee Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/arch/x86/id.S 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/00/51500/1
diff --git a/src/arch/x86/id.S b/src/arch/x86/id.S index b569178..6d1410c 100644 --- a/src/arch/x86/id.S +++ b/src/arch/x86/id.S @@ -11,7 +11,7 @@ part: .asciz CONFIG_MAINBOARD_PART_NUMBER
-#if ENV_X86_64 +#if ENV_X86_64 || CONFIG(COMPILER_LLVM_CLANG) .long 0xffffffff - ver + 1 /* Reverse offset to the version */ .long 0xffffffff - vendor + 1 /* Reverse offset to the vendor id */ .long 0xffffffff - part + 1 /* Reverse offset to the part number */