Skip to content

Commit 2a4c2cb

Browse files
author
joaosaffran
committed
formatting
1 parent a60c7a3 commit 2a4c2cb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

llvm/lib/MC/DXContainerRootSignature.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void RootSignatureDesc::write(raw_ostream &OS) const {
102102
llvm::endianness::little);
103103
if (Version > 1)
104104
support::endian::write(BOS, Descriptor.Flags, llvm::endianness::little);
105-
} break ;
105+
} break;
106106
}
107107
}
108108
assert(Storage.size() == getSize());

llvm/lib/Target/DirectX/DXILRootSignature.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,8 @@ PreservedAnalyses RootSignatureAnalysisPrinter::run(Module &M,
305305

306306
switch (Type) {
307307
case llvm::to_underlying(dxbc::RootParameterType::Constants32Bit): {
308-
const dxbc::RootConstants &Constants = RS.ParametersContainer.getConstant(Loc);
308+
const dxbc::RootConstants &Constants =
309+
RS.ParametersContainer.getConstant(Loc);
309310
OS << indent(Space + 2) << "Register Space: " << Constants.RegisterSpace
310311
<< "\n";
311312
OS << indent(Space + 2)

0 commit comments

Comments
 (0)