compiler-rt: Add missing import of test for comparesf2

This commit is contained in:
vegecode 2019-04-24 17:43:02 -05:00 committed by Andrew Kelley
parent 01168e1577
commit 733c547a65

View File

@ -116,3 +116,7 @@ pub extern fn __nesf2(a: fp_t, b: fp_t) c_int {
pub extern fn __gtsf2(a: fp_t, b: fp_t) c_int {
return __gesf2(a, b);
}
test "import comparesf2" {
_ = @import("comparesf2_test.zig");
}