Skip to content

Commit e481360

Browse files
formatting
1 parent 8a07992 commit e481360

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

clang/include/clang/CIR/MissingFeatures.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ struct MissingFeatures {
270270
static bool innermostEHScope() { return false; }
271271
static bool insertBuiltinUnpredictable() { return false; }
272272
static bool instrumentation() { return false; }
273+
static bool intrinsicElementTypeSupport() { return false; }
273274
static bool intrinsics() { return false; }
274-
static bool intrinsicElementTypeSupport() {return false; }
275275
static bool isMemcpyEquivalentSpecialMember() { return false; }
276276
static bool isTrivialCtorOrDtor() { return false; }
277277
static bool lambdaCaptures() { return false; }

clang/lib/CIR/CodeGen/CIRGenBuiltinX86.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
using namespace clang;
2222
using namespace clang::CIRGen;
2323

24-
2524
template <typename... Operands>
2625
static mlir::Value emitIntrinsicCallOp(CIRGenFunction &cgf, const CallExpr *e,
2726
const std::string &str,

clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ mlir::LogicalResult CIRToLLVMLLVMIntrinsicCallOpLowering::matchAndRewrite(
328328
if (!llvmResTy)
329329
return op.emitError("expected LLVM result type");
330330
StringRef name = op.getIntrinsicName();
331-
331+
332332
// Some LLVM intrinsics require ElementType attribute to be attached to
333333
// the argument of pointer type. That prevents us from generating LLVM IR
334334
// because from LLVM dialect, we have LLVM IR like the below which fails

0 commit comments

Comments
 (0)