Skip to content

Commit 1e6e085

Browse files
committed
clang-format
1 parent 985dbdf commit 1e6e085

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/CodeGen/TargetBuiltins/WebAssembly.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,8 @@ Value *CodeGenFunction::EmitWebAssemblyBuiltinExpr(unsigned BuiltinID,
261261
} else if (T->isIntegerTy()) {
262262
Args.push_back(ConstantInt::get(T, 0));
263263
} else if (T->isPointerTy()) {
264-
Args.push_back(ConstantPointerNull::get(llvm::PointerType::get(getLLVMContext(), T->getPointerAddressSpace())));
264+
Args.push_back(ConstantPointerNull::get(llvm::PointerType::get(
265+
getLLVMContext(), T->getPointerAddressSpace())));
265266
} else {
266267
// TODO: Handle reference types. For now, we reject them in Sema.
267268
llvm_unreachable("Unhandled type");

0 commit comments

Comments
 (0)