[llvm] [TLI] Add basic support for remquo libcall (PR #99611)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 19 00:53:53 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"
----------------
arsenm wrote:
Still using typed pointers?
https://github.com/llvm/llvm-project/pull/99611
More information about the llvm-commits
mailing list