We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66848d8 commit 883b2a8Copy full SHA for 883b2a8
clang/lib/CodeGen/CGBuiltin.cpp
@@ -19123,7 +19123,8 @@ case Builtin::BI__builtin_hlsl_elementwise_isinf: {
19123
case Builtin::BI__builtin_hlsl_wave_active_any_true: {
19124
Value *Op = EmitScalarExpr(E->getArg(0));
19125
llvm::Type *Ty = Op->getType();
19126
- assert(Ty->isIntegerTy(1) && "Intrinsic WaveActiveAnyTrue operand must be a bool");
+ assert(Ty->isIntegerTy(1) &&
19127
+ "Intrinsic WaveActiveAnyTrue operand must be a bool");
19128
19129
Intrinsic::ID ID = CGM.getHLSLRuntime().getWaveActiveAnyTrueIntrinsic();
19130
return EmitRuntimeCall(
0 commit comments