Skip to content

Commit a24ff17

Browse files
committed
[AMDGPU][NFC] Fixing formatting
Differential Revision: https://reviews.llvm.org/D117801
1 parent 01b52f7 commit a24ff17

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,8 @@ class KernelScopeInfo {
11291129
if (i >= SgprIndexUnusedMin) {
11301130
SgprIndexUnusedMin = ++i;
11311131
if (Ctx) {
1132-
MCSymbol * const Sym = Ctx->getOrCreateSymbol(Twine(".kernel.sgpr_count"));
1132+
MCSymbol* const Sym =
1133+
Ctx->getOrCreateSymbol(Twine(".kernel.sgpr_count"));
11331134
Sym->setVariableValue(MCConstantExpr::create(SgprIndexUnusedMin, *Ctx));
11341135
}
11351136
}
@@ -1139,7 +1140,8 @@ class KernelScopeInfo {
11391140
if (i >= VgprIndexUnusedMin) {
11401141
VgprIndexUnusedMin = ++i;
11411142
if (Ctx) {
1142-
MCSymbol * const Sym = Ctx->getOrCreateSymbol(Twine(".kernel.vgpr_count"));
1143+
MCSymbol* const Sym =
1144+
Ctx->getOrCreateSymbol(Twine(".kernel.vgpr_count"));
11431145
Sym->setVariableValue(MCConstantExpr::create(VgprIndexUnusedMin, *Ctx));
11441146
}
11451147
}

0 commit comments

Comments
 (0)