Skip to content

Commit 305060e

Browse files
committed
Fix clang-format
Created using spr 1.3.4
2 parents 24923b7 + 6d2cb27 commit 305060e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

llvm/include/llvm/CodeGen/ValueTypes.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,8 @@ namespace llvm {
230230

231231
/// Return true if this is an overloaded type for TableGen.
232232
bool isOverloaded() const {
233-
return (V==MVT::iAny || V==MVT::fAny || V==MVT::vAny || V==MVT::pAny);
233+
return (V == MVT::iAny || V == MVT::fAny || V == MVT::vAny ||
234+
V == MVT::pAny);
234235
}
235236

236237
/// Return true if the bit size is a multiple of 8.

llvm/utils/TableGen/FastISelEmitter.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,8 @@ void FastISelMap::printFunctionDefinitions(raw_ostream &OS) {
725725
Operands.PrintParameters(OS);
726726
OS << ") {\n";
727727

728-
emitInstructionCode(OS, Operands, PM, std::string(getEnumName(RetVT)));
728+
emitInstructionCode(OS, Operands, PM,
729+
std::string(getEnumName(RetVT)));
729730
}
730731

731732
// Emit one function for the type that demultiplexes on return type.

0 commit comments

Comments
 (0)