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.
2 parents 71e16e8 + d5912ec commit 4144414Copy full SHA for 4144414
jbmc/unit/java_bytecode/expr2java.cpp
@@ -99,6 +99,10 @@ TEST_CASE(
99
#ifndef _MSC_VER
100
REQUIRE(
101
floating_point_to_java_string(value) == "0x1p+37f /* 1.37439e+11 */");
102
+#elif _MSC_VER >= 1928
103
+ REQUIRE(
104
+ floating_point_to_java_string(value) ==
105
+ "0x1.0000000000000p+37f /* 1.37439e+11 */");
106
#else
107
108
floating_point_to_java_string(value) ==
@@ -112,6 +116,10 @@ TEST_CASE(
112
116
113
117
114
118
floating_point_to_java_string(value) == "0x1p+37 /* 1.37439e+11 */");
119
120
121
122
+ "0x1.0000000000000p+37 /* 1.37439e+11 */");
115
123
124
125
0 commit comments