Skip to content

Commit 72fdbae

Browse files
committed
Fix format
1 parent c5d18d7 commit 72fdbae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clang/lib/CodeGen/CodeGenFunction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ void CodeGenFunction::EmitOpenCLKernelMetadata(const FunctionDecl *FD,
640640
}
641641

642642
if (const SYCLIntelSchedulerTargetFmaxMhzAttr *A =
643-
FD->getAttr<SYCLIntelSchedulerTargetFmaxMhzAttr>()) {
643+
FD->getAttr<SYCLIntelSchedulerTargetFmaxMhzAttr>()) {
644644
llvm::Metadata *AttrMDArgs[] = {
645645
llvm::ConstantAsMetadata::get(Builder.getInt32(A->getNumber()))};
646646
Fn->setMetadata("scheduler_target_fmax_mhz",

clang/lib/Sema/SemaDeclAttr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3007,7 +3007,7 @@ static void handleNumSimdWorkItemsAttr(Sema &S, Decl *D,
30073007
}
30083008
// Handles scheduler_target_fmax_mhz
30093009
static void handleSchedulerTargetFmaxMhzAttr(Sema &S, Decl *D,
3010-
const ParsedAttr &Attr) {
3010+
const ParsedAttr &Attr) {
30113011
if (D->isInvalidDecl())
30123012
return;
30133013

0 commit comments

Comments
 (0)