Skip to content

Commit 6bf8bb1

Browse files
[AMDGPU] Fixed formatting
1 parent ce05d62 commit 6bf8bb1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4788,7 +4788,8 @@ bool AMDGPUAsmParser::validateOffset(const MCInst &Inst,
47884788
const unsigned OffsetSize = 24;
47894789
if (!isUIntN(OffsetSize - 1, Op.getImm())) {
47904790
Error(getFlatOffsetLoc(Operands),
4791-
Twine("expected a ") + Twine(OffsetSize - 1) + "-bit unsigned offset for buffer ops");
4791+
Twine("expected a ") + Twine(OffsetSize - 1) +
4792+
"-bit unsigned offset for buffer ops");
47924793
return false;
47934794
}
47944795
} else {

0 commit comments

Comments
 (0)