================
@@ -127,7 +127,7 @@ __clc_remquo_stret(__CLC_GENTYPE x, __CLC_GENTYPE y) {
                            ? (__CLC_CHARN)1
                            : (__CLC_CHARN)-1;
 
-    __CLC_GENTYPE t = __clc_mad(y, -__CLC_CONVERT_GENTYPE(qsgn), x);
+    __CLC_GENTYPE t = qsgn > 0 ? (x - y) : (x + y);
----------------
rjodinchr wrote:

I'm not sure I understand, this is not the only usage of `qsgn`, so we cannot 
fold it, right?

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

Reply via email to