[PATCH] D113107: Support of expression granularity for _Float16.
Zahira Ammarguellat via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 23 13:12:33 PDT 2022
zahiraam added a comment.
For this test case:
_Float16 add_half_cr(_Float16 a, _Float16 b) {
return a > b ? a : b;
}
are we expecting the phi node to be
cond.true:
%2 = load float , ptr
...
cond.false:
%3 = load float, ptr
...
%cond = phi float {{.*}} {{.*}}
?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D113107/new/
https://reviews.llvm.org/D113107
More information about the llvm-commits
mailing list