File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
llvm/lib/Target/AMDGPU/AsmParser Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1129,7 +1129,8 @@ class KernelScopeInfo {
1129
1129
if (i >= SgprIndexUnusedMin) {
1130
1130
SgprIndexUnusedMin = ++i;
1131
1131
if (Ctx) {
1132
- MCSymbol * const Sym = Ctx->getOrCreateSymbol (Twine (" .kernel.sgpr_count" ));
1132
+ MCSymbol* const Sym =
1133
+ Ctx->getOrCreateSymbol (Twine (" .kernel.sgpr_count" ));
1133
1134
Sym->setVariableValue (MCConstantExpr::create (SgprIndexUnusedMin, *Ctx));
1134
1135
}
1135
1136
}
@@ -1139,7 +1140,8 @@ class KernelScopeInfo {
1139
1140
if (i >= VgprIndexUnusedMin) {
1140
1141
VgprIndexUnusedMin = ++i;
1141
1142
if (Ctx) {
1142
- MCSymbol * const Sym = Ctx->getOrCreateSymbol (Twine (" .kernel.vgpr_count" ));
1143
+ MCSymbol* const Sym =
1144
+ Ctx->getOrCreateSymbol (Twine (" .kernel.vgpr_count" ));
1143
1145
Sym->setVariableValue (MCConstantExpr::create (VgprIndexUnusedMin, *Ctx));
1144
1146
}
1145
1147
}
You can’t perform that action at this time.
0 commit comments