[llvm] [TLI] Add basic support for remquo libcall (PR #99611)
Yingwei Zheng via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 19 00:57:43 PDT 2024
================
@@ -281,6 +281,9 @@ TEST_F(TargetLibraryInfoTest, ValidProto) {
"declare float @remainderf(float, float)\n"
"declare x86_fp80 @remainderl(x86_fp80, x86_fp80)\n"
"declare i32 @remove(i8*)\n"
+ "declare double @remquo(double, double, i32*)\n"
+ "declare float @remquof(float, float, i32*)\n"
+ "declare x86_fp80 @remquol(x86_fp80, x86_fp80, i32*)\n"
----------------
dtcxzyw wrote:
We need an NFC patch to clean up these typed pointers :)
https://github.com/llvm/llvm-project/pull/99611
More information about the llvm-commits
mailing list