[PATCH] D130623: [amdgpu][nfc] Fix build with a certan Clang version
Dmitri Gribenko via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 27 08:29:42 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGb435da027d77: [amdgpu][nfc] Fix build with a certan Clang version (authored by gribozavr).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D130623/new/
https://reviews.llvm.org/D130623
Files:
llvm/lib/Target/AMDGPU/AMDGPULowerModuleLDSPass.cpp
Index: llvm/lib/Target/AMDGPU/AMDGPULowerModuleLDSPass.cpp
===================================================================
--- llvm/lib/Target/AMDGPU/AMDGPULowerModuleLDSPass.cpp
+++ llvm/lib/Target/AMDGPU/AMDGPULowerModuleLDSPass.cpp
@@ -381,7 +381,7 @@
}
}
assert(Map.size() == LDSVarsToTransform.size());
- return {SGV, std::move(Map)};
+ return std::make_tuple(SGV, std::move(Map));
}
template <typename PredicateTy>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D130623.448056.patch
Type: text/x-patch
Size: 456 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220727/baa91ffb/attachment.bin>
More information about the llvm-commits
mailing list