================
@@ -2817,6 +2817,82 @@ static bool interp__builtin_select(InterpState &S, 
CodePtr OpPC,
   return true;
 }
 
+static bool interp__builtin_elementwise_fsh(InterpState &S, CodePtr OpPC,
+                                            const CallExpr *Call,
+                                            unsigned BuiltinID) {
+  assert(Call->getNumArgs() == 3);
+
+  const QualType &Arg1Type = Call->getArg(0)->getType();
----------------
tbaederr wrote:

```suggestion
  const QualType Arg1Type = Call->getArg(0)->getType();
```

https://github.com/llvm/llvm-project/pull/153572
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to