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 7bc6c4abe8e8d8ab70e02e4c2025a94dda01d908 bb15eebae9645e5383f26066093c0734ea76442d -- clang/lib/CodeGen/Targets/AMDGPU.cpp clang/lib/Sema/SemaDeclAttr.cpp llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h `````````` </details> <details> <summary> View the diff from clang-format here. </summary> ``````````diff diff --git a/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp b/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp index d7f5c45670..d69a78d366 100644 --- a/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp +++ b/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp @@ -1111,6 +1111,6 @@ unsigned GCNUserSGPRUsageInfo::getNumFreeUserSGPRs() { unsigned AMDGPUSubtarget::getNumWorkGroups(const Function &F) const { const unsigned Default = 0; - return AMDGPU::getUnsignedIntegerAttribute(F, "amdgpu-num-work-groups", Default); + return AMDGPU::getUnsignedIntegerAttribute(F, "amdgpu-num-work-groups", + Default); } - diff --git a/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h b/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h index fc244552f4..1ab6d2bca9 100644 --- a/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h +++ b/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h @@ -1099,10 +1099,7 @@ public: bool usesAGPRs(const MachineFunction &MF) const; /// \returns Default/requested number of work groups for this function. - unsigned getNumWorkGroups() const { - return NumWorkGroups; - } - + unsigned getNumWorkGroups() const { return NumWorkGroups; } }; } // end namespace llvm diff --git a/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp b/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp index 82e3bca7ab..1a763120e0 100644 --- a/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp +++ b/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp @@ -1221,7 +1221,8 @@ getIntegerPairAttribute(const Function &F, StringRef Name, return Ints; } -unsigned getUnsignedIntegerAttribute(const Function &F, StringRef Name, unsigned Default) { +unsigned getUnsignedIntegerAttribute(const Function &F, StringRef Name, + unsigned Default) { Attribute A = F.getFnAttribute(Name); if (!A.isStringAttribute()) return Default; diff --git a/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h b/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h index c54c1638fa..f395384a2e 100644 --- a/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h +++ b/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h @@ -824,7 +824,8 @@ int getIntegerAttribute(const Function &F, StringRef Name, int Default); /// /// \returns \p Default and emits error if requested value cannot be converted /// to integer. -unsigned getUnsignedIntegerAttribute(const Function &F, StringRef Name, unsigned Default); +unsigned getUnsignedIntegerAttribute(const Function &F, StringRef Name, + unsigned Default); /// \returns A pair of integer values requested using \p F's \p Name attribute /// in "first[,second]" format ("second" is optional unless \p OnlyFirstRequired `````````` </details> https://github.com/llvm/llvm-project/pull/75647 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits