We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1934758 commit 4dc87bcCopy full SHA for 4dc87bc
examples/intrinsics.rs
@@ -256,6 +256,10 @@ mod intrinsics {
256
a * b
257
}
258
259
+ pub fn divtf(a: f128, b: f128) -> f128 {
260
+ a / b
261
+ }
262
+
263
pub fn subtf(a: f128, b: f128) -> f128 {
264
a - b
265
@@ -440,6 +444,7 @@ fn run() {
440
444
bb(aeabi_uldivmod(bb(2), bb(3)));
441
445
bb(ashlti3(bb(2), bb(2)));
442
446
bb(ashrti3(bb(2), bb(2)));
447
+ bb(divtf(bb(2.), bb(2.)));
443
448
bb(divti3(bb(2), bb(2)));
449
bb(eqtf(bb(2.), bb(2.)));
450
bb(extendhfdf(bb(2.)));
0 commit comments