Skip to content

Commit e8b839f

Browse files
committed
Formatting
1 parent 6aa4468 commit e8b839f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -699,8 +699,9 @@ struct PPCOperand : public MCParsedAsmOperand {
699699
Op->IsPPC64 = IsPPC64;
700700
return Op;
701701
}
702-
static std::unique_ptr<PPCOperand>
703-
CreateImm(int64_t Val, SMLoc S, SMLoc E, bool IsPPC64, bool IsMemOpBase = false) {
702+
static std::unique_ptr<PPCOperand> CreateImm(int64_t Val, SMLoc S, SMLoc E,
703+
bool IsPPC64,
704+
bool IsMemOpBase = false) {
704705
auto Op = std::make_unique<PPCOperand>(Immediate);
705706
Op->Imm.Val = Val;
706707
Op->Imm.IsMemOpBase = IsMemOpBase;

0 commit comments

Comments
 (0)