Skip to content

Commit bf20263

Browse files
committed
review: allowlist formatting
1 parent 3d6fcfc commit bf20263

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

llvm/lib/Target/DirectX/DXILTranslateMetadata.cpp

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,12 @@ static void translateBranchMetadata(Module &M, Instruction *BBTerminatorInst) {
318318

319319
static std::array<unsigned, 6> getCompatibleInstructionMDs(llvm::Module &M) {
320320
return {
321-
M.getMDKindID("dx.nonuniform"), M.getMDKindID("dx.controlflow.hints"),
322-
M.getMDKindID("dx.precise"), llvm::LLVMContext::MD_range,
323-
llvm::LLVMContext::MD_alias_scope, llvm::LLVMContext::MD_noalias};
321+
M.getMDKindID("dx.nonuniform"),
322+
M.getMDKindID("dx.controlflow.hints"),
323+
M.getMDKindID("dx.precise"),
324+
llvm::LLVMContext::MD_range,
325+
llvm::LLVMContext::MD_alias_scope,
326+
llvm::LLVMContext::MD_noalias};
324327
}
325328

326329
static void translateInstructionMetadata(Module &M) {

0 commit comments

Comments
 (0)