Skip to content

Commit 883b2a8

Browse files
committed
format
1 parent 66848d8 commit 883b2a8

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
@@ -19123,7 +19123,8 @@ case Builtin::BI__builtin_hlsl_elementwise_isinf: {
1912319123
case Builtin::BI__builtin_hlsl_wave_active_any_true: {
1912419124
Value *Op = EmitScalarExpr(E->getArg(0));
1912519125
llvm::Type *Ty = Op->getType();
19126-
assert(Ty->isIntegerTy(1) && "Intrinsic WaveActiveAnyTrue operand must be a bool");
19126+
assert(Ty->isIntegerTy(1) &&
19127+
"Intrinsic WaveActiveAnyTrue operand must be a bool");
1912719128

1912819129
Intrinsic::ID ID = CGM.getHLSLRuntime().getWaveActiveAnyTrueIntrinsic();
1912919130
return EmitRuntimeCall(

0 commit comments

Comments
 (0)