Skip to content

Commit b745ce9

Browse files
committed
[builtins] Revert accidental change to PPC implementation in 05a4212
This commit was supposed to only change the generic implementation. Should fix the build bot errors.
1 parent 05a4212 commit b745ce9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler-rt/lib/builtins/ppc/multc3.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
} \
2020
}
2121

22-
xf_float _Complex __multc3(xf_float a, xf_float b, xf_float c, xf_float d) {
22+
long double _Complex __multc3(long double a, long double b, long double c,
23+
long double d) {
2324
long double ac = __gcc_qmul(a, c);
2425
long double bd = __gcc_qmul(b, d);
2526
long double ad = __gcc_qmul(a, d);

0 commit comments

Comments
 (0)