Skip to content

Commit c9229fa

Browse files
fmt
1 parent 67c3c53 commit c9229fa

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1325,9 +1325,10 @@ static mlir::Value emitTargetArchBuiltinExpr(CIRGenFunction *cgf,
13251325
break;
13261326
}
13271327

1328-
cgf->cgm.errorNYI(e->getSourceRange(),
1329-
"target-specific builtin not implemented on this architecture: " +
1330-
cgf->getContext().BuiltinInfo.getName(builtinID));
1328+
cgf->cgm.errorNYI(
1329+
e->getSourceRange(),
1330+
"target-specific builtin not implemented on this architecture: " +
1331+
cgf->getContext().BuiltinInfo.getName(builtinID));
13311332
return {};
13321333
}
13331334

clang/lib/CIR/CodeGen/CIRGenBuiltinX86.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313

1414
#include "CIRGenFunction.h"
1515
#include "CIRGenModule.h"
16+
#include "mlir/Dialect/LLVMIR/LLVMDialect.h"
1617
#include "clang/Basic/Builtins.h"
1718
#include "clang/Basic/TargetBuiltins.h"
1819
#include "clang/CIR/MissingFeatures.h"
19-
#include "mlir/Dialect/LLVMIR/LLVMDialect.h"
2020

2121
using namespace clang;
2222
using namespace clang::CIRGen;
@@ -158,7 +158,7 @@ mlir::Value CIRGenFunction::emitX86BuiltinExpr(unsigned builtinID,
158158
case X86::BI_mm_prefetch:
159159
case X86::BI_m_prefetch:
160160
case X86::BI_m_prefetchw:
161-
return emitPrefetch(*this, builtinID, expr, ops);
161+
return emitPrefetch(*this, builtinID, expr, ops);
162162
case X86::BI__rdtsc:
163163
case X86::BI__builtin_ia32_rdtscp: {
164164
cgm.errorNYI(expr->getSourceRange(),

0 commit comments

Comments
 (0)