File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ function RunFloat32x4Tests() {
116
116
exports = new WebAssembly . Instance ( mod , ffi ) . exports ;
117
117
118
118
check ( 1.0 , "exports.func_f32x4_0" ) ;
119
- check ( 2147483648 , "exports.func_f32x4_1" ) ;
119
+ check ( 3.4028234663852886e+38 , "exports.func_f32x4_1" ) ;
120
120
check ( 2147483648 , "exports.func_f32x4_2" ) ;
121
121
check ( - 2147483648 , "exports.func_f32x4_3" ) ;
122
122
}
@@ -127,7 +127,7 @@ RunInt16x8UnsignedTests();
127
127
RunInt16x8SignedTests ( ) ;
128
128
RunInt8x16UnsignedTests ( ) ;
129
129
RunInt8x16SignedTests ( ) ;
130
- // FIXME broken extract_lane: RunFloat32x4Tests();
130
+ RunFloat32x4Tests ( ) ;
131
131
132
132
if ( passed ) {
133
133
print ( "Passed" ) ;
Original file line number Diff line number Diff line change 8
8
(export " func_f32x4_0" )
9
9
(result f32 )
10
10
(f32x4.extract_lane 0
11
- (v128.const i32 0x3f800000 0x7fffffff 0x4f000000 0xcf000000 ))
11
+ (v128.const i32 0x3f800000 0x7f7fffff 0x4f000000 0xcf000000 ))
12
12
)
13
13
(func
14
14
(export " func_f32x4_1" )
15
15
(result f32 )
16
16
(f32x4.extract_lane 1
17
- (v128.const i32 0x3f800000 0x7fffffff 0x4f000000 0xcf000000 ))
17
+ (v128.const i32 0x3f800000 0x7f7fffff 0x4f000000 0xcf000000 ))
18
18
)
19
19
(func
20
20
(export " func_f32x4_2" )
21
21
(result f32 )
22
22
(f32x4.extract_lane 2
23
- (v128.const i32 0x3f800000 0x7fffffff 0x4f000000 0xcf000000 ))
23
+ (v128.const i32 0x3f800000 0x7f7fffff 0x4f000000 0xcf000000 ))
24
24
)
25
25
(func
26
26
(export " func_f32x4_3" )
27
27
(result f32 )
28
28
(f32x4.extract_lane 3
29
- (v128.const i32 0x3f800000 0x7fffffff 0x4f000000 0xcf000000 ))
29
+ (v128.const i32 0x3f800000 0x7f7fffff 0x4f000000 0xcf000000 ))
30
30
)
31
31
)
You can’t perform that action at this time.
0 commit comments