Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
[WebAssembly] Add signatures for RINT builtins
Browse files Browse the repository at this point in the history
Reviewers: azakai, dschuff

Subscribers: sbc100, jgravelle-google, hiraditya, aheejin, sunfish, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D62564

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@361904 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
tlively committed May 29, 2019
1 parent dab330e commit 21149af
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,12 @@ struct RuntimeLibcallSignatureTable {
Table[RTLIB::LLROUND_F32] = i64_func_f32;
Table[RTLIB::LLROUND_F64] = i64_func_f64;
Table[RTLIB::LLROUND_F128] = i64_func_i64_i64;
Table[RTLIB::LRINT_F32] = iPTR_func_f32;
Table[RTLIB::LRINT_F64] = iPTR_func_f64;
Table[RTLIB::LRINT_F128] = iPTR_func_i64_i64;
Table[RTLIB::LLRINT_F32] = i64_func_f32;
Table[RTLIB::LLRINT_F64] = i64_func_f64;
Table[RTLIB::LLRINT_F128] = i64_func_i64_i64;
Table[RTLIB::FLOOR_F32] = f32_func_f32;
Table[RTLIB::FLOOR_F64] = f64_func_f64;
Table[RTLIB::FLOOR_F128] = func_iPTR_i64_i64;
Expand Down

0 comments on commit 21149af

Please sign in to comment.