[clang] [X86_64] fix empty structure vaarg in c++ (PR #77907)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Jan 12 03:08:49 PST 2024
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 4d467215f162b487381e17b8cb59283af75ca50e 8e4aa168b2e7b2aa71be7f1c88f940ef141fb77c -- clang/test/CodeGen/X86/x86_64-vaarg.c clang/lib/CodeGen/Targets/X86.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/CodeGen/Targets/X86.cpp b/clang/lib/CodeGen/Targets/X86.cpp
index c2c1128083..4f9e903b8f 100644
--- a/clang/lib/CodeGen/Targets/X86.cpp
+++ b/clang/lib/CodeGen/Targets/X86.cpp
@@ -2991,7 +2991,7 @@ static Address EmitX86_64VAArgFromMemory(CodeGenFunction &CGF,
uint64_t SizeInBytes = (CGF.getContext().getTypeSize(Ty) + 7) / 8;
if (isEmptyRecord(CGF.getContext(), Ty, true)) {
- SizeInBytes = 0;
+ SizeInBytes = 0;
}
llvm::Value *Offset =
``````````
</details>
https://github.com/llvm/llvm-project/pull/77907
More information about the cfe-commits
mailing list