Skip to content

Commit d528078

Browse files
committed
Format
1 parent 00563d6 commit d528078

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/CodeGen/CGBuiltin.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23851,7 +23851,8 @@ CodeGenFunction::EmitIntelSYCLAllocaBuiltin(const CallExpr *E,
2385123851
"Expecting a single aspect");
2385223852
llvm::APSInt AspectInt =
2385323853
(*AspectAttr->aspects_begin())->EvaluateKnownConstInt(getContext());
23854-
llvm::Constant *C = Builder.getInt32(static_cast<int32_t>(AspectInt.getZExtValue()));
23854+
llvm::Constant *C =
23855+
Builder.getInt32(static_cast<int32_t>(AspectInt.getZExtValue()));
2385523856
llvm::Metadata *AspectMD = llvm::ConstantAsMetadata::get(C);
2385623857
F->setMetadata(MDName, llvm::MDNode::get(Builder.getContext(), AspectMD));
2385723858
}

0 commit comments

Comments
 (0)