We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78232a8 commit 7385210Copy full SHA for 7385210
llvm/lib/Target/NVPTX/NVVMReflect.cpp
@@ -116,7 +116,7 @@ void NVVMReflect::setVarMap(Module &M) {
116
for (StringRef Option : ReflectList) {
117
LLVM_DEBUG(dbgs() << "ReflectOption : " << Option << "\n");
118
while (!Option.empty()) {
119
- std::pair<StringRef, StringRef> Split = Option.split(',');
+ auto Split = Option.split(',');
120
StringRef NameVal = Split.first;
121
Option = Split.second;
122
0 commit comments