summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/spec/spec/const.wast.js
blob: c8c02698da6f1a3b186160eed7cd39fe73e7903b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
/* Copyright 2021 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

// ./test/core/const.wast

// ./test/core/const.wast:5
let $0 = instantiate(`(module (func (i32.const 0_123_456_789) drop))`);

// ./test/core/const.wast:6
let $1 = instantiate(`(module (func (i32.const 0x0_9acf_fBDF) drop))`);

// ./test/core/const.wast:7
assert_malformed(() => instantiate(`(func (i32.const) drop) `), `unexpected token`);

// ./test/core/const.wast:11
assert_malformed(() => instantiate(`(func (i32.const 0x) drop) `), `unknown operator`);

// ./test/core/const.wast:15
assert_malformed(() => instantiate(`(func (i32.const 1x) drop) `), `unknown operator`);

// ./test/core/const.wast:19
assert_malformed(() => instantiate(`(func (i32.const 0xg) drop) `), `unknown operator`);

// ./test/core/const.wast:24
let $2 = instantiate(`(module (func (i64.const 0_123_456_789) drop))`);

// ./test/core/const.wast:25
let $3 = instantiate(`(module (func (i64.const 0x0125_6789_ADEF_bcef) drop))`);

// ./test/core/const.wast:26
assert_malformed(() => instantiate(`(func (i64.const) drop) `), `unexpected token`);

// ./test/core/const.wast:30
assert_malformed(() => instantiate(`(func (i64.const 0x) drop) `), `unknown operator`);

// ./test/core/const.wast:34
assert_malformed(() => instantiate(`(func (i64.const 1x) drop) `), `unknown operator`);

// ./test/core/const.wast:38
assert_malformed(() => instantiate(`(func (i64.const 0xg) drop) `), `unknown operator`);

// ./test/core/const.wast:43
let $4 = instantiate(`(module (func (f32.const 0123456789) drop))`);

// ./test/core/const.wast:44
let $5 = instantiate(`(module (func (f32.const 0123456789e019) drop))`);

// ./test/core/const.wast:45
let $6 = instantiate(`(module (func (f32.const 0123456789e+019) drop))`);

// ./test/core/const.wast:46
let $7 = instantiate(`(module (func (f32.const 0123456789e-019) drop))`);

// ./test/core/const.wast:47
let $8 = instantiate(`(module (func (f32.const 0123456789.) drop))`);

// ./test/core/const.wast:48
let $9 = instantiate(`(module (func (f32.const 0123456789.e019) drop))`);

// ./test/core/const.wast:49
let $10 = instantiate(`(module (func (f32.const 0123456789.e+019) drop))`);

// ./test/core/const.wast:50
let $11 = instantiate(`(module (func (f32.const 0123456789.e-019) drop))`);

// ./test/core/const.wast:51
let $12 = instantiate(`(module (func (f32.const 0123456789.0123456789) drop))`);

// ./test/core/const.wast:52
let $13 = instantiate(`(module (func (f32.const 0123456789.0123456789e019) drop))`);

// ./test/core/const.wast:53
let $14 = instantiate(`(module (func (f32.const 0123456789.0123456789e+019) drop))`);

// ./test/core/const.wast:54
let $15 = instantiate(`(module (func (f32.const 0123456789.0123456789e-019) drop))`);

// ./test/core/const.wast:55
let $16 = instantiate(`(module (func (f32.const 0x0123456789ABCDEF) drop))`);

// ./test/core/const.wast:56
let $17 = instantiate(`(module (func (f32.const 0x0123456789ABCDEFp019) drop))`);

// ./test/core/const.wast:57
let $18 = instantiate(`(module (func (f32.const 0x0123456789ABCDEFp+019) drop))`);

// ./test/core/const.wast:58
let $19 = instantiate(`(module (func (f32.const 0x0123456789ABCDEFp-019) drop))`);

// ./test/core/const.wast:59
let $20 = instantiate(`(module (func (f32.const 0x0123456789ABCDEF.) drop))`);

// ./test/core/const.wast:60
let $21 = instantiate(`(module (func (f32.const 0x0123456789ABCDEF.p019) drop))`);

// ./test/core/const.wast:61
let $22 = instantiate(`(module (func (f32.const 0x0123456789ABCDEF.p+019) drop))`);

// ./test/core/const.wast:62
let $23 = instantiate(`(module (func (f32.const 0x0123456789ABCDEF.p-019) drop))`);

// ./test/core/const.wast:63
let $24 = instantiate(`(module (func (f32.const 0x0123456789ABCDEF.019aF) drop))`);

// ./test/core/const.wast:64
let $25 = instantiate(`(module (func (f32.const 0x0123456789ABCDEF.019aFp019) drop))`);

// ./test/core/const.wast:65
let $26 = instantiate(`(module (func (f32.const 0x0123456789ABCDEF.019aFp+019) drop))`);

// ./test/core/const.wast:66
let $27 = instantiate(`(module (func (f32.const 0x0123456789ABCDEF.019aFp-019) drop))`);

// ./test/core/const.wast:67
assert_malformed(() => instantiate(`(func (f32.const) drop) `), `unexpected token`);

// ./test/core/const.wast:71
assert_malformed(() => instantiate(`(func (f32.const .0) drop) `), `unknown operator`);

// ./test/core/const.wast:75
assert_malformed(() => instantiate(`(func (f32.const .0e0) drop) `), `unknown operator`);

// ./test/core/const.wast:79
assert_malformed(() => instantiate(`(func (f32.const 0e) drop) `), `unknown operator`);

// ./test/core/const.wast:83
assert_malformed(() => instantiate(`(func (f32.const 0e+) drop) `), `unknown operator`);

// ./test/core/const.wast:87
assert_malformed(() => instantiate(`(func (f32.const 0.0e) drop) `), `unknown operator`);

// ./test/core/const.wast:91
assert_malformed(() => instantiate(`(func (f32.const 0.0e-) drop) `), `unknown operator`);

// ./test/core/const.wast:95
assert_malformed(() => instantiate(`(func (f32.const 0x) drop) `), `unknown operator`);

// ./test/core/const.wast:99
assert_malformed(() => instantiate(`(func (f32.const 1x) drop) `), `unknown operator`);

// ./test/core/const.wast:103
assert_malformed(() => instantiate(`(func (f32.const 0xg) drop) `), `unknown operator`);

// ./test/core/const.wast:107
assert_malformed(() => instantiate(`(func (f32.const 0x.) drop) `), `unknown operator`);

// ./test/core/const.wast:111
assert_malformed(() => instantiate(`(func (f32.const 0x0.g) drop) `), `unknown operator`);

// ./test/core/const.wast:115
assert_malformed(() => instantiate(`(func (f32.const 0x0p) drop) `), `unknown operator`);

// ./test/core/const.wast:119
assert_malformed(() => instantiate(`(func (f32.const 0x0p+) drop) `), `unknown operator`);

// ./test/core/const.wast:123
assert_malformed(() => instantiate(`(func (f32.const 0x0p-) drop) `), `unknown operator`);

// ./test/core/const.wast:127
assert_malformed(() => instantiate(`(func (f32.const 0x0.0p) drop) `), `unknown operator`);

// ./test/core/const.wast:131
assert_malformed(
  () => instantiate(`(func (f32.const 0x0.0p+) drop) `),
  `unknown operator`,
);

// ./test/core/const.wast:135
assert_malformed(
  () => instantiate(`(func (f32.const 0x0.0p-) drop) `),
  `unknown operator`,
);

// ./test/core/const.wast:139
assert_malformed(() => instantiate(`(func (f32.const 0x0pA) drop) `), `unknown operator`);

// ./test/core/const.wast:145
let $28 = instantiate(`(module (func (f64.const 0123456789) drop))`);

// ./test/core/const.wast:146
let $29 = instantiate(`(module (func (f64.const 0123456789e019) drop))`);

// ./test/core/const.wast:147
let $30 = instantiate(`(module (func (f64.const 0123456789e+019) drop))`);

// ./test/core/const.wast:148
let $31 = instantiate(`(module (func (f64.const 0123456789e-019) drop))`);

// ./test/core/const.wast:149
let $32 = instantiate(`(module (func (f64.const 0123456789.) drop))`);

// ./test/core/const.wast:150
let $33 = instantiate(`(module (func (f64.const 0123456789.e019) drop))`);

// ./test/core/const.wast:151
let $34 = instantiate(`(module (func (f64.const 0123456789.e+019) drop))`);

// ./test/core/const.wast:152
let $35 = instantiate(`(module (func (f64.const 0123456789.e-019) drop))`);

// ./test/core/const.wast:153
let $36 = instantiate(`(module (func (f64.const 0123456789.0123456789) drop))`);

// ./test/core/const.wast:154
let $37 = instantiate(`(module (func (f64.const 0123456789.0123456789e019) drop))`);

// ./test/core/const.wast:155
let $38 = instantiate(`(module (func (f64.const 0123456789.0123456789e+019) drop))`);

// ./test/core/const.wast:156
let $39 = instantiate(`(module (func (f64.const 0123456789.0123456789e-019) drop))`);

// ./test/core/const.wast:157
let $40 = instantiate(`(module (func (f64.const 0_1_2_3_4_5_6_7_8_9) drop))`);

// ./test/core/const.wast:158
let $41 = instantiate(`(module (func (f64.const 0_1_2_3_4_5_6_7_8_9.) drop))`);

// ./test/core/const.wast:159
let $42 = instantiate(`(module (func (f64.const 0_1_2_3_4_5_6_7_8_9.0_1_2_3_4_5_6_7_8_9) drop))`);

// ./test/core/const.wast:160
let $43 = instantiate(`(module (func (f64.const 0_1_2_3_4_5_6_7_8_9e+0_1_9) drop))`);

// ./test/core/const.wast:161
let $44 = instantiate(`(module (func (f64.const 0_1_2_3_4_5_6_7_8_9.e+0_1_9) drop))`);

// ./test/core/const.wast:162
let $45 = instantiate(`(module (func (f64.const 0_1_2_3_4_5_6_7_8_9.0_1_2_3_4_5_6_7_8_9e0_1_9) drop))`);

// ./test/core/const.wast:164
let $46 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdef) drop))`);

// ./test/core/const.wast:165
let $47 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdefp019) drop))`);

// ./test/core/const.wast:166
let $48 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdefp+019) drop))`);

// ./test/core/const.wast:167
let $49 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdefp-019) drop))`);

// ./test/core/const.wast:168
let $50 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdef.) drop))`);

// ./test/core/const.wast:169
let $51 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdef.p019) drop))`);

// ./test/core/const.wast:170
let $52 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdef.p+019) drop))`);

// ./test/core/const.wast:171
let $53 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdef.p-019) drop))`);

// ./test/core/const.wast:172
let $54 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdef.0123456789ABCDEFabcdef) drop))`);

// ./test/core/const.wast:173
let $55 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdef.0123456789ABCDEFabcdefp019) drop))`);

// ./test/core/const.wast:174
let $56 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdef.0123456789ABCDEFabcdefp+019) drop))`);

// ./test/core/const.wast:175
let $57 = instantiate(`(module (func (f64.const 0x0123456789ABCDEFabcdef.0123456789ABCDEFabcdefp-019) drop))`);

// ./test/core/const.wast:176
let $58 = instantiate(`(module (func (f64.const 0x0_1_2_3_4_5_6_7_8_9_A_B_C_D_E_F_a_b_c_d_e_f) drop))`);

// ./test/core/const.wast:177
let $59 = instantiate(`(module (func (f64.const 0x0_1_2_3_4_5_6_7_8_9_A_B_C_D_E_F_a_b_c_d_e_f.) drop))`);

// ./test/core/const.wast:178
let $60 = instantiate(`(module (func (f64.const 0x0_1_2_3_4_5_6_7_8_9_A_B_C_D_E_F_a_b_c_d_e_f.0_1_2_3_4_5_6_7_8_9_A_B_C_D_E_F_a_b_c_d_e_f) drop))`);

// ./test/core/const.wast:179
let $61 = instantiate(`(module (func (f64.const 0x0_1_2_3_4_5_6_7_8_9_A_B_C_D_E_F_a_b_c_d_e_fp0_1_9) drop))`);

// ./test/core/const.wast:180
let $62 = instantiate(`(module (func (f64.const 0x0_1_2_3_4_5_6_7_8_9_A_B_C_D_E_F_a_b_c_d_e_f.p0_1_9) drop))`);

// ./test/core/const.wast:181
let $63 = instantiate(`(module (func (f64.const 0x0_1_2_3_4_5_6_7_8_9_A_B_C_D_E_F_a_b_c_d_e_f.0_1_2_3_4_5_6_7_8_9_A_B_C_D_E_F_a_b_c_d_e_fp0_1_9) drop))`);

// ./test/core/const.wast:184
assert_malformed(() => instantiate(`(func (f64.const) drop) `), `unexpected token`);

// ./test/core/const.wast:188
assert_malformed(() => instantiate(`(func (f64.const .0) drop) `), `unknown operator`);

// ./test/core/const.wast:192
assert_malformed(() => instantiate(`(func (f64.const .0e0) drop) `), `unknown operator`);

// ./test/core/const.wast:196
assert_malformed(() => instantiate(`(func (f64.const 0e) drop) `), `unknown operator`);

// ./test/core/const.wast:200
assert_malformed(() => instantiate(`(func (f64.const 0e+) drop) `), `unknown operator`);

// ./test/core/const.wast:204
assert_malformed(() => instantiate(`(func (f64.const 0.0e) drop) `), `unknown operator`);

// ./test/core/const.wast:208
assert_malformed(() => instantiate(`(func (f64.const 0.0e-) drop) `), `unknown operator`);

// ./test/core/const.wast:212
assert_malformed(() => instantiate(`(func (f64.const 0x) drop) `), `unknown operator`);

// ./test/core/const.wast:216
assert_malformed(() => instantiate(`(func (f64.const 1x) drop) `), `unknown operator`);

// ./test/core/const.wast:220
assert_malformed(() => instantiate(`(func (f64.const 0xg) drop) `), `unknown operator`);

// ./test/core/const.wast:224
assert_malformed(() => instantiate(`(func (f64.const 0x.) drop) `), `unknown operator`);

// ./test/core/const.wast:228
assert_malformed(() => instantiate(`(func (f64.const 0x0.g) drop) `), `unknown operator`);

// ./test/core/const.wast:232
assert_malformed(() => instantiate(`(func (f64.const 0x0p) drop) `), `unknown operator`);

// ./test/core/const.wast:236
assert_malformed(() => instantiate(`(func (f64.const 0x0p+) drop) `), `unknown operator`);

// ./test/core/const.wast:240
assert_malformed(() => instantiate(`(func (f64.const 0x0p-) drop) `), `unknown operator`);

// ./test/core/const.wast:244
assert_malformed(() => instantiate(`(func (f64.const 0x0.0p) drop) `), `unknown operator`);

// ./test/core/const.wast:248
assert_malformed(
  () => instantiate(`(func (f64.const 0x0.0p+) drop) `),
  `unknown operator`,
);

// ./test/core/const.wast:252
assert_malformed(
  () => instantiate(`(func (f64.const 0x0.0p-) drop) `),
  `unknown operator`,
);

// ./test/core/const.wast:256
assert_malformed(() => instantiate(`(func (f64.const 0x0pA) drop) `), `unknown operator`);

// ./test/core/const.wast:264
let $64 = instantiate(`(module (func (i32.const 0xffffffff) drop))`);

// ./test/core/const.wast:265
let $65 = instantiate(`(module (func (i32.const -0x80000000) drop))`);

// ./test/core/const.wast:266
assert_malformed(
  () => instantiate(`(func (i32.const 0x100000000) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:270
assert_malformed(
  () => instantiate(`(func (i32.const -0x80000001) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:275
let $66 = instantiate(`(module (func (i32.const 4294967295) drop))`);

// ./test/core/const.wast:276
let $67 = instantiate(`(module (func (i32.const -2147483648) drop))`);

// ./test/core/const.wast:277
assert_malformed(
  () => instantiate(`(func (i32.const 4294967296) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:281
assert_malformed(
  () => instantiate(`(func (i32.const -2147483649) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:286
let $68 = instantiate(`(module (func (i64.const 0xffffffffffffffff) drop))`);

// ./test/core/const.wast:287
let $69 = instantiate(`(module (func (i64.const -0x8000000000000000) drop))`);

// ./test/core/const.wast:288
assert_malformed(
  () => instantiate(`(func (i64.const 0x10000000000000000) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:292
assert_malformed(
  () => instantiate(`(func (i64.const -0x8000000000000001) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:297
let $70 = instantiate(`(module (func (i64.const 18446744073709551615) drop))`);

// ./test/core/const.wast:298
let $71 = instantiate(`(module (func (i64.const -9223372036854775808) drop))`);

// ./test/core/const.wast:299
assert_malformed(
  () => instantiate(`(func (i64.const 18446744073709551616) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:303
assert_malformed(
  () => instantiate(`(func (i64.const -9223372036854775809) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:308
let $72 = instantiate(`(module (func (f32.const 0x1p127) drop))`);

// ./test/core/const.wast:309
let $73 = instantiate(`(module (func (f32.const -0x1p127) drop))`);

// ./test/core/const.wast:310
let $74 = instantiate(`(module (func (f32.const 0x1.fffffep127) drop))`);

// ./test/core/const.wast:311
let $75 = instantiate(`(module (func (f32.const -0x1.fffffep127) drop))`);

// ./test/core/const.wast:312
let $76 = instantiate(`(module (func (f32.const 0x1.fffffe7p127) drop))`);

// ./test/core/const.wast:313
let $77 = instantiate(`(module (func (f32.const -0x1.fffffe7p127) drop))`);

// ./test/core/const.wast:314
let $78 = instantiate(`(module (func (f32.const 0x1.fffffefffffff8000000p127) drop))`);

// ./test/core/const.wast:315
let $79 = instantiate(`(module (func (f32.const -0x1.fffffefffffff8000000p127) drop))`);

// ./test/core/const.wast:316
let $80 = instantiate(`(module (func (f32.const 0x1.fffffefffffffffffffp127) drop))`);

// ./test/core/const.wast:317
let $81 = instantiate(`(module (func (f32.const -0x1.fffffefffffffffffffp127) drop))`);

// ./test/core/const.wast:318
assert_malformed(
  () => instantiate(`(func (f32.const 0x1p128) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:322
assert_malformed(
  () => instantiate(`(func (f32.const -0x1p128) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:326
assert_malformed(
  () => instantiate(`(func (f32.const 0x1.ffffffp127) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:330
assert_malformed(
  () => instantiate(`(func (f32.const -0x1.ffffffp127) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:335
let $82 = instantiate(`(module (func (f32.const 1e38) drop))`);

// ./test/core/const.wast:336
let $83 = instantiate(`(module (func (f32.const -1e38) drop))`);

// ./test/core/const.wast:337
assert_malformed(
  () => instantiate(`(func (f32.const 1e39) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:341
assert_malformed(
  () => instantiate(`(func (f32.const -1e39) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:346
let $84 = instantiate(`(module (func (f32.const 340282356779733623858607532500980858880) drop))`);

// ./test/core/const.wast:347
let $85 = instantiate(`(module (func (f32.const -340282356779733623858607532500980858880) drop))`);

// ./test/core/const.wast:348
assert_malformed(
  () => instantiate(`(func (f32.const 340282356779733661637539395458142568448) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:352
assert_malformed(
  () => instantiate(`(func (f32.const -340282356779733661637539395458142568448) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:357
let $86 = instantiate(`(module (func (f64.const 0x1p1023) drop))`);

// ./test/core/const.wast:358
let $87 = instantiate(`(module (func (f64.const -0x1p1023) drop))`);

// ./test/core/const.wast:359
let $88 = instantiate(`(module (func (f64.const 0x1.fffffffffffffp1023) drop))`);

// ./test/core/const.wast:360
let $89 = instantiate(`(module (func (f64.const -0x1.fffffffffffffp1023) drop))`);

// ./test/core/const.wast:361
let $90 = instantiate(`(module (func (f64.const 0x1.fffffffffffff7p1023) drop))`);

// ./test/core/const.wast:362
let $91 = instantiate(`(module (func (f64.const -0x1.fffffffffffff7p1023) drop))`);

// ./test/core/const.wast:363
let $92 = instantiate(`(module (func (f64.const 0x1.fffffffffffff7ffffffp1023) drop))`);

// ./test/core/const.wast:364
let $93 = instantiate(`(module (func (f64.const -0x1.fffffffffffff7ffffffp1023) drop))`);

// ./test/core/const.wast:365
assert_malformed(
  () => instantiate(`(func (f64.const 0x1p1024) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:369
assert_malformed(
  () => instantiate(`(func (f64.const -0x1p1024) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:373
assert_malformed(
  () => instantiate(`(func (f64.const 0x1.fffffffffffff8p1023) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:377
assert_malformed(
  () => instantiate(`(func (f64.const -0x1.fffffffffffff8p1023) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:382
let $94 = instantiate(`(module (func (f64.const 1e308) drop))`);

// ./test/core/const.wast:383
let $95 = instantiate(`(module (func (f64.const -1e308) drop))`);

// ./test/core/const.wast:384
assert_malformed(
  () => instantiate(`(func (f64.const 1e309) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:388
assert_malformed(
  () => instantiate(`(func (f64.const -1e309) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:393
let $96 = instantiate(`(module (func (f64.const 179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368) drop))`);

// ./test/core/const.wast:394
let $97 = instantiate(`(module (func (f64.const -179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368) drop))`);

// ./test/core/const.wast:395
assert_malformed(
  () => instantiate(`(func (f64.const 269653970229347356221791135597556535197105851288767494898376215204735891170042808140884337949150317257310688430271573696351481990334196274152701320055306275479074865864826923114368235135583993416113802762682700913456874855354834422248712838998185022412196739306217084753107265771378949821875606039276187287552) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:399
assert_malformed(
  () => instantiate(`(func (f64.const -269653970229347356221791135597556535197105851288767494898376215204735891170042808140884337949150317257310688430271573696351481990334196274152701320055306275479074865864826923114368235135583993416113802762682700913456874855354834422248712838998185022412196739306217084753107265771378949821875606039276187287552) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:404
let $98 = instantiate(`(module (func (f32.const nan:0x1) drop))`);

// ./test/core/const.wast:405
let $99 = instantiate(`(module (func (f64.const nan:0x1) drop))`);

// ./test/core/const.wast:406
let $100 = instantiate(`(module (func (f32.const nan:0x7f_ffff) drop))`);

// ./test/core/const.wast:407
let $101 = instantiate(`(module (func (f64.const nan:0xf_ffff_ffff_ffff) drop))`);

// ./test/core/const.wast:409
assert_malformed(() => instantiate(`(func (f32.const nan:1) drop) `), `unknown operator`);

// ./test/core/const.wast:413
assert_malformed(() => instantiate(`(func (f64.const nan:1) drop) `), `unknown operator`);

// ./test/core/const.wast:418
assert_malformed(
  () => instantiate(`(func (f32.const nan:0x0) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:422
assert_malformed(
  () => instantiate(`(func (f64.const nan:0x0) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:427
assert_malformed(
  () => instantiate(`(func (f32.const nan:0x80_0000) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:431
assert_malformed(
  () => instantiate(`(func (f64.const nan:0x10_0000_0000_0000) drop) `),
  `constant out of range`,
);

// ./test/core/const.wast:440
let $102 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000100000000000p-50)))`);

// ./test/core/const.wast:441
assert_return(() => invoke($102, `f`, []), [value("f32", 0.0000000000000008881784)]);

// ./test/core/const.wast:442
let $103 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000100000000000p-50)))`);

// ./test/core/const.wast:443
assert_return(() => invoke($103, `f`, []), [value("f32", -0.0000000000000008881784)]);

// ./test/core/const.wast:444
let $104 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000100000000001p-50)))`);

// ./test/core/const.wast:445
assert_return(() => invoke($104, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:446
let $105 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000100000000001p-50)))`);

// ./test/core/const.wast:447
assert_return(() => invoke($105, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:448
let $106 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.000001fffffffffffp-50)))`);

// ./test/core/const.wast:449
assert_return(() => invoke($106, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:450
let $107 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.000001fffffffffffp-50)))`);

// ./test/core/const.wast:451
assert_return(() => invoke($107, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:452
let $108 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000200000000000p-50)))`);

// ./test/core/const.wast:453
assert_return(() => invoke($108, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:454
let $109 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000200000000000p-50)))`);

// ./test/core/const.wast:455
assert_return(() => invoke($109, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:456
let $110 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000200000000001p-50)))`);

// ./test/core/const.wast:457
assert_return(() => invoke($110, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:458
let $111 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000200000000001p-50)))`);

// ./test/core/const.wast:459
assert_return(() => invoke($111, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:460
let $112 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.000002fffffffffffp-50)))`);

// ./test/core/const.wast:461
assert_return(() => invoke($112, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:462
let $113 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.000002fffffffffffp-50)))`);

// ./test/core/const.wast:463
assert_return(() => invoke($113, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:464
let $114 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000300000000000p-50)))`);

// ./test/core/const.wast:465
assert_return(() => invoke($114, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:466
let $115 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000300000000000p-50)))`);

// ./test/core/const.wast:467
assert_return(() => invoke($115, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:468
let $116 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000300000000001p-50)))`);

// ./test/core/const.wast:469
assert_return(() => invoke($116, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:470
let $117 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000300000000001p-50)))`);

// ./test/core/const.wast:471
assert_return(() => invoke($117, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:472
let $118 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.000003fffffffffffp-50)))`);

// ./test/core/const.wast:473
assert_return(() => invoke($118, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:474
let $119 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.000003fffffffffffp-50)))`);

// ./test/core/const.wast:475
assert_return(() => invoke($119, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:476
let $120 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000400000000000p-50)))`);

// ./test/core/const.wast:477
assert_return(() => invoke($120, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:478
let $121 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000400000000000p-50)))`);

// ./test/core/const.wast:479
assert_return(() => invoke($121, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:480
let $122 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000400000000001p-50)))`);

// ./test/core/const.wast:481
assert_return(() => invoke($122, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:482
let $123 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000400000000001p-50)))`);

// ./test/core/const.wast:483
assert_return(() => invoke($123, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:484
let $124 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.000004fffffffffffp-50)))`);

// ./test/core/const.wast:485
assert_return(() => invoke($124, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:486
let $125 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.000004fffffffffffp-50)))`);

// ./test/core/const.wast:487
assert_return(() => invoke($125, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:488
let $126 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000500000000000p-50)))`);

// ./test/core/const.wast:489
assert_return(() => invoke($126, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:490
let $127 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000500000000000p-50)))`);

// ./test/core/const.wast:491
assert_return(() => invoke($127, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:492
let $128 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000500000000001p-50)))`);

// ./test/core/const.wast:493
assert_return(() => invoke($128, `f`, []), [value("f32", 0.0000000000000008881787)]);

// ./test/core/const.wast:494
let $129 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000500000000001p-50)))`);

// ./test/core/const.wast:495
assert_return(() => invoke($129, `f`, []), [value("f32", -0.0000000000000008881787)]);

// ./test/core/const.wast:497
let $130 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.004000000p-64)))`);

// ./test/core/const.wast:498
assert_return(() => invoke($130, `f`, []), [value("f32", 0.0000000000000008881784)]);

// ./test/core/const.wast:499
let $131 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.004000000p-64)))`);

// ./test/core/const.wast:500
assert_return(() => invoke($131, `f`, []), [value("f32", -0.0000000000000008881784)]);

// ./test/core/const.wast:501
let $132 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.004000001p-64)))`);

// ./test/core/const.wast:502
assert_return(() => invoke($132, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:503
let $133 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.004000001p-64)))`);

// ./test/core/const.wast:504
assert_return(() => invoke($133, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:505
let $134 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.007ffffffp-64)))`);

// ./test/core/const.wast:506
assert_return(() => invoke($134, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:507
let $135 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.007ffffffp-64)))`);

// ./test/core/const.wast:508
assert_return(() => invoke($135, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:509
let $136 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.008000000p-64)))`);

// ./test/core/const.wast:510
assert_return(() => invoke($136, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:511
let $137 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.008000000p-64)))`);

// ./test/core/const.wast:512
assert_return(() => invoke($137, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:513
let $138 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.008000001p-64)))`);

// ./test/core/const.wast:514
assert_return(() => invoke($138, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:515
let $139 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.008000001p-64)))`);

// ./test/core/const.wast:516
assert_return(() => invoke($139, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:517
let $140 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.00bffffffp-64)))`);

// ./test/core/const.wast:518
assert_return(() => invoke($140, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:519
let $141 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.00bffffffp-64)))`);

// ./test/core/const.wast:520
assert_return(() => invoke($141, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:521
let $142 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.00c000000p-64)))`);

// ./test/core/const.wast:522
assert_return(() => invoke($142, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:523
let $143 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.00c000000p-64)))`);

// ./test/core/const.wast:524
assert_return(() => invoke($143, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:525
let $144 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.00c000001p-64)))`);

// ./test/core/const.wast:526
assert_return(() => invoke($144, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:527
let $145 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.00c000001p-64)))`);

// ./test/core/const.wast:528
assert_return(() => invoke($145, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:529
let $146 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.00fffffffp-64)))`);

// ./test/core/const.wast:530
assert_return(() => invoke($146, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:531
let $147 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.00fffffffp-64)))`);

// ./test/core/const.wast:532
assert_return(() => invoke($147, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:533
let $148 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.010000001p-64)))`);

// ./test/core/const.wast:534
assert_return(() => invoke($148, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:535
let $149 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.010000001p-64)))`);

// ./test/core/const.wast:536
assert_return(() => invoke($149, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:537
let $150 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.013ffffffp-64)))`);

// ./test/core/const.wast:538
assert_return(() => invoke($150, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:539
let $151 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.013ffffffp-64)))`);

// ./test/core/const.wast:540
assert_return(() => invoke($151, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:541
let $152 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000.014000001p-64)))`);

// ./test/core/const.wast:542
assert_return(() => invoke($152, `f`, []), [value("f32", 0.0000000000000008881787)]);

// ./test/core/const.wast:543
let $153 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000.014000001p-64)))`);

// ./test/core/const.wast:544
assert_return(() => invoke($153, `f`, []), [value("f32", -0.0000000000000008881787)]);

// ./test/core/const.wast:546
let $154 = instantiate(`(module (func (export "f") (result f32) (f32.const +8.8817847263968443573e-16)))`);

// ./test/core/const.wast:547
assert_return(() => invoke($154, `f`, []), [value("f32", 0.0000000000000008881784)]);

// ./test/core/const.wast:548
let $155 = instantiate(`(module (func (export "f") (result f32) (f32.const -8.8817847263968443573e-16)))`);

// ./test/core/const.wast:549
assert_return(() => invoke($155, `f`, []), [value("f32", -0.0000000000000008881784)]);

// ./test/core/const.wast:550
let $156 = instantiate(`(module (func (export "f") (result f32) (f32.const +8.8817847263968443574e-16)))`);

// ./test/core/const.wast:551
assert_return(() => invoke($156, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:552
let $157 = instantiate(`(module (func (export "f") (result f32) (f32.const -8.8817847263968443574e-16)))`);

// ./test/core/const.wast:553
assert_return(() => invoke($157, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:554
let $158 = instantiate(`(module (func (export "f") (result f32) (f32.const +8.8817857851880284252e-16)))`);

// ./test/core/const.wast:555
assert_return(() => invoke($158, `f`, []), [value("f32", 0.0000000000000008881785)]);

// ./test/core/const.wast:556
let $159 = instantiate(`(module (func (export "f") (result f32) (f32.const -8.8817857851880284252e-16)))`);

// ./test/core/const.wast:557
assert_return(() => invoke($159, `f`, []), [value("f32", -0.0000000000000008881785)]);

// ./test/core/const.wast:558
let $160 = instantiate(`(module (func (export "f") (result f32) (f32.const +8.8817857851880284253e-16)))`);

// ./test/core/const.wast:559
assert_return(() => invoke($160, `f`, []), [value("f32", 0.0000000000000008881786)]);

// ./test/core/const.wast:560
let $161 = instantiate(`(module (func (export "f") (result f32) (f32.const -8.8817857851880284253e-16)))`);

// ./test/core/const.wast:561
assert_return(() => invoke($161, `f`, []), [value("f32", -0.0000000000000008881786)]);

// ./test/core/const.wast:564
let $162 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000100000000000p+50)))`);

// ./test/core/const.wast:565
assert_return(() => invoke($162, `f`, []), [value("f32", 1125899900000000)]);

// ./test/core/const.wast:566
let $163 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000100000000000p+50)))`);

// ./test/core/const.wast:567
assert_return(() => invoke($163, `f`, []), [value("f32", -1125899900000000)]);

// ./test/core/const.wast:568
let $164 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000100000000001p+50)))`);

// ./test/core/const.wast:569
assert_return(() => invoke($164, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:570
let $165 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000100000000001p+50)))`);

// ./test/core/const.wast:571
assert_return(() => invoke($165, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:572
let $166 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.000001fffffffffffp+50)))`);

// ./test/core/const.wast:573
assert_return(() => invoke($166, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:574
let $167 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.000001fffffffffffp+50)))`);

// ./test/core/const.wast:575
assert_return(() => invoke($167, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:576
let $168 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000200000000000p+50)))`);

// ./test/core/const.wast:577
assert_return(() => invoke($168, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:578
let $169 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000200000000000p+50)))`);

// ./test/core/const.wast:579
assert_return(() => invoke($169, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:580
let $170 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000200000000001p+50)))`);

// ./test/core/const.wast:581
assert_return(() => invoke($170, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:582
let $171 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000200000000001p+50)))`);

// ./test/core/const.wast:583
assert_return(() => invoke($171, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:584
let $172 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.000002fffffffffffp+50)))`);

// ./test/core/const.wast:585
assert_return(() => invoke($172, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:586
let $173 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.000002fffffffffffp+50)))`);

// ./test/core/const.wast:587
assert_return(() => invoke($173, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:588
let $174 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000300000000000p+50)))`);

// ./test/core/const.wast:589
assert_return(() => invoke($174, `f`, []), [value("f32", 1125900200000000)]);

// ./test/core/const.wast:590
let $175 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000300000000000p+50)))`);

// ./test/core/const.wast:591
assert_return(() => invoke($175, `f`, []), [value("f32", -1125900200000000)]);

// ./test/core/const.wast:592
let $176 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000300000000001p+50)))`);

// ./test/core/const.wast:593
assert_return(() => invoke($176, `f`, []), [value("f32", 1125900200000000)]);

// ./test/core/const.wast:594
let $177 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000300000000001p+50)))`);

// ./test/core/const.wast:595
assert_return(() => invoke($177, `f`, []), [value("f32", -1125900200000000)]);

// ./test/core/const.wast:596
let $178 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.000003fffffffffffp+50)))`);

// ./test/core/const.wast:597
assert_return(() => invoke($178, `f`, []), [value("f32", 1125900200000000)]);

// ./test/core/const.wast:598
let $179 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.000003fffffffffffp+50)))`);

// ./test/core/const.wast:599
assert_return(() => invoke($179, `f`, []), [value("f32", -1125900200000000)]);

// ./test/core/const.wast:600
let $180 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000400000000000p+50)))`);

// ./test/core/const.wast:601
assert_return(() => invoke($180, `f`, []), [value("f32", 1125900200000000)]);

// ./test/core/const.wast:602
let $181 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000400000000000p+50)))`);

// ./test/core/const.wast:603
assert_return(() => invoke($181, `f`, []), [value("f32", -1125900200000000)]);

// ./test/core/const.wast:604
let $182 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000400000000001p+50)))`);

// ./test/core/const.wast:605
assert_return(() => invoke($182, `f`, []), [value("f32", 1125900200000000)]);

// ./test/core/const.wast:606
let $183 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000400000000001p+50)))`);

// ./test/core/const.wast:607
assert_return(() => invoke($183, `f`, []), [value("f32", -1125900200000000)]);

// ./test/core/const.wast:608
let $184 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.000004fffffffffffp+50)))`);

// ./test/core/const.wast:609
assert_return(() => invoke($184, `f`, []), [value("f32", 1125900200000000)]);

// ./test/core/const.wast:610
let $185 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.000004fffffffffffp+50)))`);

// ./test/core/const.wast:611
assert_return(() => invoke($185, `f`, []), [value("f32", -1125900200000000)]);

// ./test/core/const.wast:612
let $186 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000500000000000p+50)))`);

// ./test/core/const.wast:613
assert_return(() => invoke($186, `f`, []), [value("f32", 1125900200000000)]);

// ./test/core/const.wast:614
let $187 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000500000000000p+50)))`);

// ./test/core/const.wast:615
assert_return(() => invoke($187, `f`, []), [value("f32", -1125900200000000)]);

// ./test/core/const.wast:616
let $188 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.00000500000000001p+50)))`);

// ./test/core/const.wast:617
assert_return(() => invoke($188, `f`, []), [value("f32", 1125900300000000)]);

// ./test/core/const.wast:618
let $189 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.00000500000000001p+50)))`);

// ./test/core/const.wast:619
assert_return(() => invoke($189, `f`, []), [value("f32", -1125900300000000)]);

// ./test/core/const.wast:621
let $190 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000004000000)))`);

// ./test/core/const.wast:622
assert_return(() => invoke($190, `f`, []), [value("f32", 1125899900000000)]);

// ./test/core/const.wast:623
let $191 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000004000000)))`);

// ./test/core/const.wast:624
assert_return(() => invoke($191, `f`, []), [value("f32", -1125899900000000)]);

// ./test/core/const.wast:625
let $192 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000004000001)))`);

// ./test/core/const.wast:626
assert_return(() => invoke($192, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:627
let $193 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000004000001)))`);

// ./test/core/const.wast:628
assert_return(() => invoke($193, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:629
let $194 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000007ffffff)))`);

// ./test/core/const.wast:630
assert_return(() => invoke($194, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:631
let $195 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000007ffffff)))`);

// ./test/core/const.wast:632
assert_return(() => invoke($195, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:633
let $196 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000008000000)))`);

// ./test/core/const.wast:634
assert_return(() => invoke($196, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:635
let $197 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000008000000)))`);

// ./test/core/const.wast:636
assert_return(() => invoke($197, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:637
let $198 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x4000008000001)))`);

// ./test/core/const.wast:638
assert_return(() => invoke($198, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:639
let $199 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x4000008000001)))`);

// ./test/core/const.wast:640
assert_return(() => invoke($199, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:641
let $200 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x400000bffffff)))`);

// ./test/core/const.wast:642
assert_return(() => invoke($200, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:643
let $201 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x400000bffffff)))`);

// ./test/core/const.wast:644
assert_return(() => invoke($201, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:645
let $202 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x400000c000000)))`);

// ./test/core/const.wast:646
assert_return(() => invoke($202, `f`, []), [value("f32", 1125900200000000)]);

// ./test/core/const.wast:647
let $203 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x400000c000000)))`);

// ./test/core/const.wast:648
assert_return(() => invoke($203, `f`, []), [value("f32", -1125900200000000)]);

// ./test/core/const.wast:650
let $204 = instantiate(`(module (func (export "f") (result f32) (f32.const +1125899973951488)))`);

// ./test/core/const.wast:651
assert_return(() => invoke($204, `f`, []), [value("f32", 1125899900000000)]);

// ./test/core/const.wast:652
let $205 = instantiate(`(module (func (export "f") (result f32) (f32.const -1125899973951488)))`);

// ./test/core/const.wast:653
assert_return(() => invoke($205, `f`, []), [value("f32", -1125899900000000)]);

// ./test/core/const.wast:654
let $206 = instantiate(`(module (func (export "f") (result f32) (f32.const +1125899973951489)))`);

// ./test/core/const.wast:655
assert_return(() => invoke($206, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:656
let $207 = instantiate(`(module (func (export "f") (result f32) (f32.const -1125899973951489)))`);

// ./test/core/const.wast:657
assert_return(() => invoke($207, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:658
let $208 = instantiate(`(module (func (export "f") (result f32) (f32.const +1125900108169215)))`);

// ./test/core/const.wast:659
assert_return(() => invoke($208, `f`, []), [value("f32", 1125900000000000)]);

// ./test/core/const.wast:660
let $209 = instantiate(`(module (func (export "f") (result f32) (f32.const -1125900108169215)))`);

// ./test/core/const.wast:661
assert_return(() => invoke($209, `f`, []), [value("f32", -1125900000000000)]);

// ./test/core/const.wast:662
let $210 = instantiate(`(module (func (export "f") (result f32) (f32.const +1125900108169216)))`);

// ./test/core/const.wast:663
assert_return(() => invoke($210, `f`, []), [value("f32", 1125900200000000)]);

// ./test/core/const.wast:664
let $211 = instantiate(`(module (func (export "f") (result f32) (f32.const -1125900108169216)))`);

// ./test/core/const.wast:665
assert_return(() => invoke($211, `f`, []), [value("f32", -1125900200000000)]);

// ./test/core/const.wast:668
let $212 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.00000100000000000p-126)))`);

// ./test/core/const.wast:669
assert_return(() => invoke($212, `f`, []), [value("f32", 0)]);

// ./test/core/const.wast:670
let $213 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.00000100000000000p-126)))`);

// ./test/core/const.wast:671
assert_return(() => invoke($213, `f`, []), [value("f32", -0)]);

// ./test/core/const.wast:672
let $214 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.00000100000000001p-126)))`);

// ./test/core/const.wast:673
assert_return(
  () => invoke($214, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000001)],
);

// ./test/core/const.wast:674
let $215 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.00000100000000001p-126)))`);

// ./test/core/const.wast:675
assert_return(
  () => invoke($215, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000001)],
);

// ./test/core/const.wast:676
let $216 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.000001fffffffffffp-126)))`);

// ./test/core/const.wast:677
assert_return(
  () => invoke($216, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000001)],
);

// ./test/core/const.wast:678
let $217 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.000001fffffffffffp-126)))`);

// ./test/core/const.wast:679
assert_return(
  () => invoke($217, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000001)],
);

// ./test/core/const.wast:680
let $218 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.00000200000000000p-126)))`);

// ./test/core/const.wast:681
assert_return(
  () => invoke($218, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000001)],
);

// ./test/core/const.wast:682
let $219 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.00000200000000000p-126)))`);

// ./test/core/const.wast:683
assert_return(
  () => invoke($219, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000001)],
);

// ./test/core/const.wast:684
let $220 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.00000200000000001p-126)))`);

// ./test/core/const.wast:685
assert_return(
  () => invoke($220, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000001)],
);

// ./test/core/const.wast:686
let $221 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.00000200000000001p-126)))`);

// ./test/core/const.wast:687
assert_return(
  () => invoke($221, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000001)],
);

// ./test/core/const.wast:688
let $222 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.000002fffffffffffp-126)))`);

// ./test/core/const.wast:689
assert_return(
  () => invoke($222, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000001)],
);

// ./test/core/const.wast:690
let $223 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.000002fffffffffffp-126)))`);

// ./test/core/const.wast:691
assert_return(
  () => invoke($223, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000001)],
);

// ./test/core/const.wast:692
let $224 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.00000300000000000p-126)))`);

// ./test/core/const.wast:693
assert_return(
  () => invoke($224, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:694
let $225 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.00000300000000000p-126)))`);

// ./test/core/const.wast:695
assert_return(
  () => invoke($225, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:696
let $226 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.00000300000000001p-126)))`);

// ./test/core/const.wast:697
assert_return(
  () => invoke($226, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:698
let $227 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.00000300000000001p-126)))`);

// ./test/core/const.wast:699
assert_return(
  () => invoke($227, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:700
let $228 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.000003fffffffffffp-126)))`);

// ./test/core/const.wast:701
assert_return(
  () => invoke($228, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:702
let $229 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.000003fffffffffffp-126)))`);

// ./test/core/const.wast:703
assert_return(
  () => invoke($229, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:704
let $230 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.00000400000000000p-126)))`);

// ./test/core/const.wast:705
assert_return(
  () => invoke($230, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:706
let $231 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.00000400000000000p-126)))`);

// ./test/core/const.wast:707
assert_return(
  () => invoke($231, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:708
let $232 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.00000400000000001p-126)))`);

// ./test/core/const.wast:709
assert_return(
  () => invoke($232, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:710
let $233 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.00000400000000001p-126)))`);

// ./test/core/const.wast:711
assert_return(
  () => invoke($233, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:712
let $234 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.000004fffffffffffp-126)))`);

// ./test/core/const.wast:713
assert_return(
  () => invoke($234, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:714
let $235 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.000004fffffffffffp-126)))`);

// ./test/core/const.wast:715
assert_return(
  () => invoke($235, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:716
let $236 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.00000500000000000p-126)))`);

// ./test/core/const.wast:717
assert_return(
  () => invoke($236, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:718
let $237 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.00000500000000000p-126)))`);

// ./test/core/const.wast:719
assert_return(
  () => invoke($237, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000003)],
);

// ./test/core/const.wast:720
let $238 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x0.00000500000000001p-126)))`);

// ./test/core/const.wast:721
assert_return(
  () => invoke($238, `f`, []),
  [value("f32", 0.000000000000000000000000000000000000000000004)],
);

// ./test/core/const.wast:722
let $239 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x0.00000500000000001p-126)))`);

// ./test/core/const.wast:723
assert_return(
  () => invoke($239, `f`, []),
  [value("f32", -0.000000000000000000000000000000000000000000004)],
);

// ./test/core/const.wast:726
let $240 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.fffffe8p127)))`);

// ./test/core/const.wast:727
assert_return(() => invoke($240, `f`, []), [value("f32", 340282350000000000000000000000000000000)]);

// ./test/core/const.wast:728
let $241 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.fffffe8p127)))`);

// ./test/core/const.wast:729
assert_return(() => invoke($241, `f`, []), [value("f32", -340282350000000000000000000000000000000)]);

// ./test/core/const.wast:730
let $242 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.fffffefffffff8p127)))`);

// ./test/core/const.wast:731
assert_return(() => invoke($242, `f`, []), [value("f32", 340282350000000000000000000000000000000)]);

// ./test/core/const.wast:732
let $243 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.fffffefffffff8p127)))`);

// ./test/core/const.wast:733
assert_return(() => invoke($243, `f`, []), [value("f32", -340282350000000000000000000000000000000)]);

// ./test/core/const.wast:734
let $244 = instantiate(`(module (func (export "f") (result f32) (f32.const +0x1.fffffefffffffffffp127)))`);

// ./test/core/const.wast:735
assert_return(() => invoke($244, `f`, []), [value("f32", 340282350000000000000000000000000000000)]);

// ./test/core/const.wast:736
let $245 = instantiate(`(module (func (export "f") (result f32) (f32.const -0x1.fffffefffffffffffp127)))`);

// ./test/core/const.wast:737
assert_return(() => invoke($245, `f`, []), [value("f32", -340282350000000000000000000000000000000)]);

// ./test/core/const.wast:740
let $246 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000080000000000p-600)))`);

// ./test/core/const.wast:741
assert_return(
  () => invoke($246, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102884),
  ],
);

// ./test/core/const.wast:742
let $247 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000080000000000p-600)))`);

// ./test/core/const.wast:743
assert_return(
  () => invoke($247, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102884),
  ],
);

// ./test/core/const.wast:744
let $248 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000080000000001p-600)))`);

// ./test/core/const.wast:745
assert_return(
  () => invoke($248, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:746
let $249 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000080000000001p-600)))`);

// ./test/core/const.wast:747
assert_return(
  () => invoke($249, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:748
let $250 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.0000000000000fffffffffffp-600)))`);

// ./test/core/const.wast:749
assert_return(
  () => invoke($250, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:750
let $251 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.0000000000000fffffffffffp-600)))`);

// ./test/core/const.wast:751
assert_return(
  () => invoke($251, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:752
let $252 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000100000000000p-600)))`);

// ./test/core/const.wast:753
assert_return(
  () => invoke($252, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:754
let $253 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000100000000000p-600)))`);

// ./test/core/const.wast:755
assert_return(
  () => invoke($253, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:756
let $254 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000100000000001p-600)))`);

// ./test/core/const.wast:757
assert_return(
  () => invoke($254, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:758
let $255 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000100000000001p-600)))`);

// ./test/core/const.wast:759
assert_return(
  () => invoke($255, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:760
let $256 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.00000000000017ffffffffffp-600)))`);

// ./test/core/const.wast:761
assert_return(
  () => invoke($256, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:762
let $257 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.00000000000017ffffffffffp-600)))`);

// ./test/core/const.wast:763
assert_return(
  () => invoke($257, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:764
let $258 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000180000000000p-600)))`);

// ./test/core/const.wast:765
assert_return(
  () => invoke($258, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:766
let $259 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000180000000000p-600)))`);

// ./test/core/const.wast:767
assert_return(
  () => invoke($259, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:768
let $260 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000180000000001p-600)))`);

// ./test/core/const.wast:769
assert_return(
  () => invoke($260, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:770
let $261 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000180000000001p-600)))`);

// ./test/core/const.wast:771
assert_return(
  () => invoke($261, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:772
let $262 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.0000000000001fffffffffffp-600)))`);

// ./test/core/const.wast:773
assert_return(
  () => invoke($262, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:774
let $263 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.0000000000001fffffffffffp-600)))`);

// ./test/core/const.wast:775
assert_return(
  () => invoke($263, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:776
let $264 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000200000000000p-600)))`);

// ./test/core/const.wast:777
assert_return(
  () => invoke($264, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:778
let $265 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000200000000000p-600)))`);

// ./test/core/const.wast:779
assert_return(
  () => invoke($265, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:780
let $266 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000200000000001p-600)))`);

// ./test/core/const.wast:781
assert_return(
  () => invoke($266, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:782
let $267 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000200000000001p-600)))`);

// ./test/core/const.wast:783
assert_return(
  () => invoke($267, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:784
let $268 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.00000000000027ffffffffffp-600)))`);

// ./test/core/const.wast:785
assert_return(
  () => invoke($268, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:786
let $269 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.00000000000027ffffffffffp-600)))`);

// ./test/core/const.wast:787
assert_return(
  () => invoke($269, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:788
let $270 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000280000000001p-600)))`);

// ./test/core/const.wast:789
assert_return(
  () => invoke($270, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028857),
  ],
);

// ./test/core/const.wast:790
let $271 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000280000000001p-600)))`);

// ./test/core/const.wast:791
assert_return(
  () => invoke($271, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028857),
  ],
);

// ./test/core/const.wast:793
let $272 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.000000400000000000p-627)))`);

// ./test/core/const.wast:794
assert_return(
  () => invoke($272, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102884),
  ],
);

// ./test/core/const.wast:795
let $273 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.000000400000000000p-627)))`);

// ./test/core/const.wast:796
assert_return(
  () => invoke($273, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102884),
  ],
);

// ./test/core/const.wast:797
let $274 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.000000400000000001p-627)))`);

// ./test/core/const.wast:798
assert_return(
  () => invoke($274, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:799
let $275 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.000000400000000001p-627)))`);

// ./test/core/const.wast:800
assert_return(
  () => invoke($275, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:801
let $276 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.0000007fffffffffffp-627)))`);

// ./test/core/const.wast:802
assert_return(
  () => invoke($276, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:803
let $277 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.0000007fffffffffffp-627)))`);

// ./test/core/const.wast:804
assert_return(
  () => invoke($277, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:805
let $278 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.000000800000000000p-627)))`);

// ./test/core/const.wast:806
assert_return(
  () => invoke($278, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:807
let $279 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.000000800000000000p-627)))`);

// ./test/core/const.wast:808
assert_return(
  () => invoke($279, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:809
let $280 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.000000800000000001p-627)))`);

// ./test/core/const.wast:810
assert_return(
  () => invoke($280, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:811
let $281 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.000000800000000001p-627)))`);

// ./test/core/const.wast:812
assert_return(
  () => invoke($281, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:813
let $282 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.000000bfffffffffffp-627)))`);

// ./test/core/const.wast:814
assert_return(
  () => invoke($282, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:815
let $283 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.000000bfffffffffffp-627)))`);

// ./test/core/const.wast:816
assert_return(
  () => invoke($283, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028847),
  ],
);

// ./test/core/const.wast:817
let $284 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.000000c00000000000p-627)))`);

// ./test/core/const.wast:818
assert_return(
  () => invoke($284, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:819
let $285 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.000000c00000000000p-627)))`);

// ./test/core/const.wast:820
assert_return(
  () => invoke($285, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:821
let $286 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.000000c00000000001p-627)))`);

// ./test/core/const.wast:822
assert_return(
  () => invoke($286, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:823
let $287 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.000000c00000000001p-627)))`);

// ./test/core/const.wast:824
assert_return(
  () => invoke($287, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:825
let $288 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.000000ffffffffffffp-627)))`);

// ./test/core/const.wast:826
assert_return(
  () => invoke($288, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:827
let $289 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.000000ffffffffffffp-627)))`);

// ./test/core/const.wast:828
assert_return(
  () => invoke($289, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:829
let $290 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.000001000000000000p-627)))`);

// ./test/core/const.wast:830
assert_return(
  () => invoke($290, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:831
let $291 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.000001000000000000p-627)))`);

// ./test/core/const.wast:832
assert_return(
  () => invoke($291, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:833
let $292 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.000001000000000001p-627)))`);

// ./test/core/const.wast:834
assert_return(
  () => invoke($292, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:835
let $293 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.000001000000000001p-627)))`);

// ./test/core/const.wast:836
assert_return(
  () => invoke($293, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:837
let $294 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.0000013fffffffffffp-627)))`);

// ./test/core/const.wast:838
assert_return(
  () => invoke($294, `f`, []),
  [
    value("f64", 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:839
let $295 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.0000013fffffffffffp-627)))`);

// ./test/core/const.wast:840
assert_return(
  () => invoke($295, `f`, []),
  [
    value("f64", -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002409919865102885),
  ],
);

// ./test/core/const.wast:841
let $296 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x8000000.000001400000000001p-627)))`);

// ./test/core/const.wast:842
assert_return(
  () => invoke($296, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028857),
  ],
);

// ./test/core/const.wast:843
let $297 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x8000000.000001400000000001p-627)))`);

// ./test/core/const.wast:844
assert_return(
  () => invoke($297, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024099198651028857),
  ],
);

// ./test/core/const.wast:846
let $298 = instantiate(`(module (func (export "f") (result f64) (f64.const +5.3575430359313371995e+300)))`);

// ./test/core/const.wast:847
assert_return(
  () => invoke($298, `f`, []),
  [
    value("f64", 5357543035931337000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:848
let $299 = instantiate(`(module (func (export "f") (result f64) (f64.const -5.3575430359313371995e+300)))`);

// ./test/core/const.wast:849
assert_return(
  () => invoke($299, `f`, []),
  [
    value("f64", -5357543035931337000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:850
let $300 = instantiate(`(module (func (export "f") (result f64) (f64.const +5.3575430359313371996e+300)))`);

// ./test/core/const.wast:851
assert_return(
  () => invoke($300, `f`, []),
  [
    value("f64", 5357543035931338000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:852
let $301 = instantiate(`(module (func (export "f") (result f64) (f64.const -5.3575430359313371996e+300)))`);

// ./test/core/const.wast:853
assert_return(
  () => invoke($301, `f`, []),
  [
    value("f64", -5357543035931338000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:854
let $302 = instantiate(`(module (func (export "f") (result f64) (f64.const +5.3575430359313383891e+300)))`);

// ./test/core/const.wast:855
assert_return(
  () => invoke($302, `f`, []),
  [
    value("f64", 5357543035931338000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:856
let $303 = instantiate(`(module (func (export "f") (result f64) (f64.const -5.3575430359313383891e+300)))`);

// ./test/core/const.wast:857
assert_return(
  () => invoke($303, `f`, []),
  [
    value("f64", -5357543035931338000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:858
let $304 = instantiate(`(module (func (export "f") (result f64) (f64.const +5.3575430359313383892e+300)))`);

// ./test/core/const.wast:859
assert_return(
  () => invoke($304, `f`, []),
  [
    value("f64", 5357543035931339000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:860
let $305 = instantiate(`(module (func (export "f") (result f64) (f64.const -5.3575430359313383892e+300)))`);

// ./test/core/const.wast:861
assert_return(
  () => invoke($305, `f`, []),
  [
    value("f64", -5357543035931339000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:864
let $306 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000080000000000p+600)))`);

// ./test/core/const.wast:865
assert_return(
  () => invoke($306, `f`, []),
  [
    value("f64", 4149515568880993000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:866
let $307 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000080000000000p+600)))`);

// ./test/core/const.wast:867
assert_return(
  () => invoke($307, `f`, []),
  [
    value("f64", -4149515568880993000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:868
let $308 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000080000000001p+600)))`);

// ./test/core/const.wast:869
assert_return(
  () => invoke($308, `f`, []),
  [
    value("f64", 4149515568880994000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:870
let $309 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000080000000001p+600)))`);

// ./test/core/const.wast:871
assert_return(
  () => invoke($309, `f`, []),
  [
    value("f64", -4149515568880994000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:872
let $310 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.0000000000000fffffffffffp+600)))`);

// ./test/core/const.wast:873
assert_return(
  () => invoke($310, `f`, []),
  [
    value("f64", 4149515568880994000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:874
let $311 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.0000000000000fffffffffffp+600)))`);

// ./test/core/const.wast:875
assert_return(
  () => invoke($311, `f`, []),
  [
    value("f64", -4149515568880994000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:876
let $312 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000100000000000p+600)))`);

// ./test/core/const.wast:877
assert_return(
  () => invoke($312, `f`, []),
  [
    value("f64", 4149515568880994000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:878
let $313 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000100000000000p+600)))`);

// ./test/core/const.wast:879
assert_return(
  () => invoke($313, `f`, []),
  [
    value("f64", -4149515568880994000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:880
let $314 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000100000000001p+600)))`);

// ./test/core/const.wast:881
assert_return(
  () => invoke($314, `f`, []),
  [
    value("f64", 4149515568880994000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:882
let $315 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000100000000001p+600)))`);

// ./test/core/const.wast:883
assert_return(
  () => invoke($315, `f`, []),
  [
    value("f64", -4149515568880994000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:884
let $316 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.00000000000017ffffffffffp+600)))`);

// ./test/core/const.wast:885
assert_return(
  () => invoke($316, `f`, []),
  [
    value("f64", 4149515568880994000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:886
let $317 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.00000000000017ffffffffffp+600)))`);

// ./test/core/const.wast:887
assert_return(
  () => invoke($317, `f`, []),
  [
    value("f64", -4149515568880994000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:888
let $318 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000180000000000p+600)))`);

// ./test/core/const.wast:889
assert_return(
  () => invoke($318, `f`, []),
  [
    value("f64", 4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:890
let $319 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000180000000000p+600)))`);

// ./test/core/const.wast:891
assert_return(
  () => invoke($319, `f`, []),
  [
    value("f64", -4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:892
let $320 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000180000000001p+600)))`);

// ./test/core/const.wast:893
assert_return(
  () => invoke($320, `f`, []),
  [
    value("f64", 4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:894
let $321 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000180000000001p+600)))`);

// ./test/core/const.wast:895
assert_return(
  () => invoke($321, `f`, []),
  [
    value("f64", -4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:896
let $322 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.0000000000001fffffffffffp+600)))`);

// ./test/core/const.wast:897
assert_return(
  () => invoke($322, `f`, []),
  [
    value("f64", 4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:898
let $323 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.0000000000001fffffffffffp+600)))`);

// ./test/core/const.wast:899
assert_return(
  () => invoke($323, `f`, []),
  [
    value("f64", -4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:900
let $324 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000200000000000p+600)))`);

// ./test/core/const.wast:901
assert_return(
  () => invoke($324, `f`, []),
  [
    value("f64", 4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:902
let $325 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000200000000000p+600)))`);

// ./test/core/const.wast:903
assert_return(
  () => invoke($325, `f`, []),
  [
    value("f64", -4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:904
let $326 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000200000000001p+600)))`);

// ./test/core/const.wast:905
assert_return(
  () => invoke($326, `f`, []),
  [
    value("f64", 4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:906
let $327 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000200000000001p+600)))`);

// ./test/core/const.wast:907
assert_return(
  () => invoke($327, `f`, []),
  [
    value("f64", -4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:908
let $328 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.00000000000027ffffffffffp+600)))`);

// ./test/core/const.wast:909
assert_return(
  () => invoke($328, `f`, []),
  [
    value("f64", 4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:910
let $329 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.00000000000027ffffffffffp+600)))`);

// ./test/core/const.wast:911
assert_return(
  () => invoke($329, `f`, []),
  [
    value("f64", -4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:912
let $330 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000280000000000p+600)))`);

// ./test/core/const.wast:913
assert_return(
  () => invoke($330, `f`, []),
  [
    value("f64", 4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:914
let $331 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000280000000000p+600)))`);

// ./test/core/const.wast:915
assert_return(
  () => invoke($331, `f`, []),
  [
    value("f64", -4149515568880995000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:916
let $332 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000280000000001p+600)))`);

// ./test/core/const.wast:917
assert_return(
  () => invoke($332, `f`, []),
  [
    value("f64", 4149515568880996000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:918
let $333 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000280000000001p+600)))`);

// ./test/core/const.wast:919
assert_return(
  () => invoke($333, `f`, []),
  [
    value("f64", -4149515568880996000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:921
let $334 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x2000000000000100000000000)))`);

// ./test/core/const.wast:922
assert_return(() => invoke($334, `f`, []), [value("f64", 158456325028528680000000000000)]);

// ./test/core/const.wast:923
let $335 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x2000000000000100000000000)))`);

// ./test/core/const.wast:924
assert_return(() => invoke($335, `f`, []), [value("f64", -158456325028528680000000000000)]);

// ./test/core/const.wast:925
let $336 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x2000000000000100000000001)))`);

// ./test/core/const.wast:926
assert_return(() => invoke($336, `f`, []), [value("f64", 158456325028528700000000000000)]);

// ./test/core/const.wast:927
let $337 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x2000000000000100000000001)))`);

// ./test/core/const.wast:928
assert_return(() => invoke($337, `f`, []), [value("f64", -158456325028528700000000000000)]);

// ./test/core/const.wast:929
let $338 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x20000000000001fffffffffff)))`);

// ./test/core/const.wast:930
assert_return(() => invoke($338, `f`, []), [value("f64", 158456325028528700000000000000)]);

// ./test/core/const.wast:931
let $339 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x20000000000001fffffffffff)))`);

// ./test/core/const.wast:932
assert_return(() => invoke($339, `f`, []), [value("f64", -158456325028528700000000000000)]);

// ./test/core/const.wast:933
let $340 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x2000000000000200000000000)))`);

// ./test/core/const.wast:934
assert_return(() => invoke($340, `f`, []), [value("f64", 158456325028528700000000000000)]);

// ./test/core/const.wast:935
let $341 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x2000000000000200000000000)))`);

// ./test/core/const.wast:936
assert_return(() => invoke($341, `f`, []), [value("f64", -158456325028528700000000000000)]);

// ./test/core/const.wast:937
let $342 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x2000000000000200000000001)))`);

// ./test/core/const.wast:938
assert_return(() => invoke($342, `f`, []), [value("f64", 158456325028528700000000000000)]);

// ./test/core/const.wast:939
let $343 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x2000000000000200000000001)))`);

// ./test/core/const.wast:940
assert_return(() => invoke($343, `f`, []), [value("f64", -158456325028528700000000000000)]);

// ./test/core/const.wast:941
let $344 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x20000000000002fffffffffff)))`);

// ./test/core/const.wast:942
assert_return(() => invoke($344, `f`, []), [value("f64", 158456325028528700000000000000)]);

// ./test/core/const.wast:943
let $345 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x20000000000002fffffffffff)))`);

// ./test/core/const.wast:944
assert_return(() => invoke($345, `f`, []), [value("f64", -158456325028528700000000000000)]);

// ./test/core/const.wast:945
let $346 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x2000000000000300000000000)))`);

// ./test/core/const.wast:946
assert_return(() => invoke($346, `f`, []), [value("f64", 158456325028528750000000000000)]);

// ./test/core/const.wast:947
let $347 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x2000000000000300000000000)))`);

// ./test/core/const.wast:948
assert_return(() => invoke($347, `f`, []), [value("f64", -158456325028528750000000000000)]);

// ./test/core/const.wast:949
let $348 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x2000000000000300000000001)))`);

// ./test/core/const.wast:950
assert_return(() => invoke($348, `f`, []), [value("f64", 158456325028528750000000000000)]);

// ./test/core/const.wast:951
let $349 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x2000000000000300000000001)))`);

// ./test/core/const.wast:952
assert_return(() => invoke($349, `f`, []), [value("f64", -158456325028528750000000000000)]);

// ./test/core/const.wast:953
let $350 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x20000000000003fffffffffff)))`);

// ./test/core/const.wast:954
assert_return(() => invoke($350, `f`, []), [value("f64", 158456325028528750000000000000)]);

// ./test/core/const.wast:955
let $351 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x20000000000003fffffffffff)))`);

// ./test/core/const.wast:956
assert_return(() => invoke($351, `f`, []), [value("f64", -158456325028528750000000000000)]);

// ./test/core/const.wast:957
let $352 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x2000000000000400000000000)))`);

// ./test/core/const.wast:958
assert_return(() => invoke($352, `f`, []), [value("f64", 158456325028528750000000000000)]);

// ./test/core/const.wast:959
let $353 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x2000000000000400000000000)))`);

// ./test/core/const.wast:960
assert_return(() => invoke($353, `f`, []), [value("f64", -158456325028528750000000000000)]);

// ./test/core/const.wast:961
let $354 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x2000000000000400000000001)))`);

// ./test/core/const.wast:962
assert_return(() => invoke($354, `f`, []), [value("f64", 158456325028528750000000000000)]);

// ./test/core/const.wast:963
let $355 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x2000000000000400000000001)))`);

// ./test/core/const.wast:964
assert_return(() => invoke($355, `f`, []), [value("f64", -158456325028528750000000000000)]);

// ./test/core/const.wast:965
let $356 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x20000000000004fffffffffff)))`);

// ./test/core/const.wast:966
assert_return(() => invoke($356, `f`, []), [value("f64", 158456325028528750000000000000)]);

// ./test/core/const.wast:967
let $357 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x20000000000004fffffffffff)))`);

// ./test/core/const.wast:968
assert_return(() => invoke($357, `f`, []), [value("f64", -158456325028528750000000000000)]);

// ./test/core/const.wast:969
let $358 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x2000000000000500000000000)))`);

// ./test/core/const.wast:970
assert_return(() => invoke($358, `f`, []), [value("f64", 158456325028528750000000000000)]);

// ./test/core/const.wast:971
let $359 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x2000000000000500000000000)))`);

// ./test/core/const.wast:972
assert_return(() => invoke($359, `f`, []), [value("f64", -158456325028528750000000000000)]);

// ./test/core/const.wast:973
let $360 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x2000000000000500000000001)))`);

// ./test/core/const.wast:974
assert_return(() => invoke($360, `f`, []), [value("f64", 158456325028528780000000000000)]);

// ./test/core/const.wast:975
let $361 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x2000000000000500000000001)))`);

// ./test/core/const.wast:976
assert_return(() => invoke($361, `f`, []), [value("f64", -158456325028528780000000000000)]);

// ./test/core/const.wast:978
let $362 = instantiate(`(module (func (export "f") (result f64) (f64.const +1152921504606847104)))`);

// ./test/core/const.wast:979
assert_return(() => invoke($362, `f`, []), [value("f64", 1152921504606847000)]);

// ./test/core/const.wast:980
let $363 = instantiate(`(module (func (export "f") (result f64) (f64.const -1152921504606847104)))`);

// ./test/core/const.wast:981
assert_return(() => invoke($363, `f`, []), [value("f64", -1152921504606847000)]);

// ./test/core/const.wast:982
let $364 = instantiate(`(module (func (export "f") (result f64) (f64.const +1152921504606847105)))`);

// ./test/core/const.wast:983
assert_return(() => invoke($364, `f`, []), [value("f64", 1152921504606847200)]);

// ./test/core/const.wast:984
let $365 = instantiate(`(module (func (export "f") (result f64) (f64.const -1152921504606847105)))`);

// ./test/core/const.wast:985
assert_return(() => invoke($365, `f`, []), [value("f64", -1152921504606847200)]);

// ./test/core/const.wast:986
let $366 = instantiate(`(module (func (export "f") (result f64) (f64.const +1152921504606847359)))`);

// ./test/core/const.wast:987
assert_return(() => invoke($366, `f`, []), [value("f64", 1152921504606847200)]);

// ./test/core/const.wast:988
let $367 = instantiate(`(module (func (export "f") (result f64) (f64.const -1152921504606847359)))`);

// ./test/core/const.wast:989
assert_return(() => invoke($367, `f`, []), [value("f64", -1152921504606847200)]);

// ./test/core/const.wast:990
let $368 = instantiate(`(module (func (export "f") (result f64) (f64.const +1152921504606847360)))`);

// ./test/core/const.wast:991
assert_return(() => invoke($368, `f`, []), [value("f64", 1152921504606847500)]);

// ./test/core/const.wast:992
let $369 = instantiate(`(module (func (export "f") (result f64) (f64.const -1152921504606847360)))`);

// ./test/core/const.wast:993
assert_return(() => invoke($369, `f`, []), [value("f64", -1152921504606847500)]);

// ./test/core/const.wast:996
let $370 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.000000000000080000000000p-1022)))`);

// ./test/core/const.wast:997
assert_return(() => invoke($370, `f`, []), [value("f64", 0)]);

// ./test/core/const.wast:998
let $371 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.000000000000080000000000p-1022)))`);

// ./test/core/const.wast:999
assert_return(() => invoke($371, `f`, []), [value("f64", -0)]);

// ./test/core/const.wast:1000
let $372 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.000000000000080000000001p-1022)))`);

// ./test/core/const.wast:1001
assert_return(
  () => invoke($372, `f`, []),
  [
    value("f64", 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005),
  ],
);

// ./test/core/const.wast:1002
let $373 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.000000000000080000000001p-1022)))`);

// ./test/core/const.wast:1003
assert_return(
  () => invoke($373, `f`, []),
  [
    value("f64", -0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005),
  ],
);

// ./test/core/const.wast:1004
let $374 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.0000000000000fffffffffffp-1022)))`);

// ./test/core/const.wast:1005
assert_return(
  () => invoke($374, `f`, []),
  [
    value("f64", 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005),
  ],
);

// ./test/core/const.wast:1006
let $375 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.0000000000000fffffffffffp-1022)))`);

// ./test/core/const.wast:1007
assert_return(
  () => invoke($375, `f`, []),
  [
    value("f64", -0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005),
  ],
);

// ./test/core/const.wast:1008
let $376 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.000000000000100000000000p-1022)))`);

// ./test/core/const.wast:1009
assert_return(
  () => invoke($376, `f`, []),
  [
    value("f64", 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005),
  ],
);

// ./test/core/const.wast:1010
let $377 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.000000000000100000000000p-1022)))`);

// ./test/core/const.wast:1011
assert_return(
  () => invoke($377, `f`, []),
  [
    value("f64", -0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005),
  ],
);

// ./test/core/const.wast:1012
let $378 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.000000000000100000000001p-1022)))`);

// ./test/core/const.wast:1013
assert_return(
  () => invoke($378, `f`, []),
  [
    value("f64", 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005),
  ],
);

// ./test/core/const.wast:1014
let $379 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.000000000000100000000001p-1022)))`);

// ./test/core/const.wast:1015
assert_return(
  () => invoke($379, `f`, []),
  [
    value("f64", -0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005),
  ],
);

// ./test/core/const.wast:1016
let $380 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.00000000000017ffffffffffp-1022)))`);

// ./test/core/const.wast:1017
assert_return(
  () => invoke($380, `f`, []),
  [
    value("f64", 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005),
  ],
);

// ./test/core/const.wast:1018
let $381 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.00000000000017ffffffffffp-1022)))`);

// ./test/core/const.wast:1019
assert_return(
  () => invoke($381, `f`, []),
  [
    value("f64", -0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005),
  ],
);

// ./test/core/const.wast:1020
let $382 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.000000000000180000000000p-1022)))`);

// ./test/core/const.wast:1021
assert_return(
  () => invoke($382, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1022
let $383 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.000000000000180000000000p-1022)))`);

// ./test/core/const.wast:1023
assert_return(
  () => invoke($383, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1024
let $384 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.000000000000180000000001p-1022)))`);

// ./test/core/const.wast:1025
assert_return(
  () => invoke($384, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1026
let $385 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.000000000000180000000001p-1022)))`);

// ./test/core/const.wast:1027
assert_return(
  () => invoke($385, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1028
let $386 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.0000000000001fffffffffffp-1022)))`);

// ./test/core/const.wast:1029
assert_return(
  () => invoke($386, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1030
let $387 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.0000000000001fffffffffffp-1022)))`);

// ./test/core/const.wast:1031
assert_return(
  () => invoke($387, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1032
let $388 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.000000000000200000000000p-1022)))`);

// ./test/core/const.wast:1033
assert_return(
  () => invoke($388, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1034
let $389 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.000000000000200000000000p-1022)))`);

// ./test/core/const.wast:1035
assert_return(
  () => invoke($389, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1036
let $390 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.000000000000200000000001p-1022)))`);

// ./test/core/const.wast:1037
assert_return(
  () => invoke($390, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1038
let $391 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.000000000000200000000001p-1022)))`);

// ./test/core/const.wast:1039
assert_return(
  () => invoke($391, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1040
let $392 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.00000000000027ffffffffffp-1022)))`);

// ./test/core/const.wast:1041
assert_return(
  () => invoke($392, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1042
let $393 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.00000000000027ffffffffffp-1022)))`);

// ./test/core/const.wast:1043
assert_return(
  () => invoke($393, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1044
let $394 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x0.000000000000280000000000p-1022)))`);

// ./test/core/const.wast:1045
assert_return(
  () => invoke($394, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1046
let $395 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x0.000000000000280000000000p-1022)))`);

// ./test/core/const.wast:1047
assert_return(
  () => invoke($395, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001),
  ],
);

// ./test/core/const.wast:1048
let $396 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.000000000000280000000001p-1022)))`);

// ./test/core/const.wast:1049
assert_return(
  () => invoke($396, `f`, []),
  [
    value("f64", 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002225073858507203),
  ],
);

// ./test/core/const.wast:1050
let $397 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.000000000000280000000001p-1022)))`);

// ./test/core/const.wast:1051
assert_return(
  () => invoke($397, `f`, []),
  [
    value("f64", -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002225073858507203),
  ],
);

// ./test/core/const.wast:1054
let $398 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.fffffffffffff4p1023)))`);

// ./test/core/const.wast:1055
assert_return(
  () => invoke($398, `f`, []),
  [
    value("f64", 179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:1056
let $399 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.fffffffffffff4p1023)))`);

// ./test/core/const.wast:1057
assert_return(
  () => invoke($399, `f`, []),
  [
    value("f64", -179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:1058
let $400 = instantiate(`(module (func (export "f") (result f64) (f64.const +0x1.fffffffffffff7ffffffp1023)))`);

// ./test/core/const.wast:1059
assert_return(
  () => invoke($400, `f`, []),
  [
    value("f64", 179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);

// ./test/core/const.wast:1060
let $401 = instantiate(`(module (func (export "f") (result f64) (f64.const -0x1.fffffffffffff7ffffffp1023)))`);

// ./test/core/const.wast:1061
assert_return(
  () => invoke($401, `f`, []),
  [
    value("f64", -179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),
  ],
);